]> git.proxmox.com Git - rustc.git/blob - src/test/ui/xc-private-method.stderr
New upstream version 1.44.1+dfsg1
[rustc.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`.