summary refs log tree commit diff
path: root/src/test/ui/xc-private-method.stderr
blob: 91bec2551c1e0655b1215365e3728305b2435752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0624]: method `static_meth_struct` is private
  --> $DIR/xc-private-method.rs:6:13
   |
LL |     let _ = xc_private_method_lib::Struct::static_meth_struct();
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0624]: method `static_meth_enum` is private
  --> $DIR/xc-private-method.rs:9:13
   |
LL |     let _ = xc_private_method_lib::Enum::static_meth_enum();
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0624`.