]> git.lizzy.rs Git - rust.git/blob - src/test/ui/xc-private-method.stderr
Rollup merge of #80733 - steffahn:prettify_pin_links, r=jyn514
[rust.git] / src / test / ui / xc-private-method.stderr
1 error[E0624]: associated function `static_meth_struct` is private
2   --> $DIR/xc-private-method.rs:6:44
3    |
4 LL |     let _ = xc_private_method_lib::Struct::static_meth_struct();
5    |                                            ^^^^^^^^^^^^^^^^^^ private associated function
6
7 error[E0624]: associated function `static_meth_enum` is private
8   --> $DIR/xc-private-method.rs:9:42
9    |
10 LL |     let _ = xc_private_method_lib::Enum::static_meth_enum();
11    |                                          ^^^^^^^^^^^^^^^^ private associated function
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0624`.