rust/src/test/ui/static/static-priv-by-default2.stderr

16 lines
470 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0603]: static `private` is private
--> $DIR/static-priv-by-default2.rs:25:30
2018-08-08 07:28:26 -05:00
|
LL | use child::childs_child::private;
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: static `private` is private
--> $DIR/static-priv-by-default2.rs:33:33
2018-08-08 07:28:26 -05:00
|
LL | use static_priv_by_default::private;
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0603`.