rust/src/test/ui/use/use-mod/use-mod-3.stderr

16 lines
404 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0603]: module `bar` is private
--> $DIR/use-mod-3.rs:11:10
2018-08-08 07:28:26 -05:00
|
LL | use foo::bar::{ //~ ERROR module `bar` is private
| ^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `bar` is private
--> $DIR/use-mod-3.rs:14:10
2018-08-08 07:28:26 -05:00
|
LL | use foo::bar::{ //~ ERROR module `bar` is 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`.