rust/src/test/ui/xc-private-method.stderr

16 lines
566 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0624]: method `static_meth_struct` is private
2018-12-25 09:56:47 -06:00
--> $DIR/xc-private-method.rs:6:13
2018-08-08 07:28:26 -05:00
|
LL | let _ = xc_private_method_lib::Struct::static_meth_struct();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0624]: method `static_meth_enum` is private
2018-12-25 09:56:47 -06:00
--> $DIR/xc-private-method.rs:9:13
2018-08-08 07:28:26 -05:00
|
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`.