summary refs log tree commit diff
path: root/src/test/ui/xc-private-method.stderr
blob: 35078e73d4670f1f37c21c19e44e4758a30f6a56 (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:16:13
   |
LL |     let _ = xc_private_method_lib::Struct::static_meth_struct();
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0624]: method `static_meth_enum` is private
  --> $DIR/xc-private-method.rs:19: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`.