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