rust/src/test/ui/privacy/privacy-ns2.stderr

87 lines
2.2 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0423]: expected function, found trait `Bar`
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-ns2.rs:20:5
2018-08-08 12:28:26 +00:00
|
LL | Bar(); //~ ERROR expected function, found trait `Bar`
| ^^^ not a function
help: possible better candidates are found in other modules, you can import them into scope
|
LL | use foo1::Bar;
|
LL | use foo2::Bar;
|
LL | use foo3::Bar;
|
error[E0423]: expected function, found trait `Bar`
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-ns2.rs:26:5
2018-08-08 12:28:26 +00:00
|
LL | Bar(); //~ ERROR expected function, found trait `Bar`
| ^^^
help: a unit struct with a similar name exists
|
LL | Baz(); //~ ERROR expected function, found trait `Bar`
| ^^^
2018-08-08 12:28:26 +00:00
help: possible better candidates are found in other modules, you can import them into scope
|
LL | use foo1::Bar;
|
LL | use foo2::Bar;
|
LL | use foo3::Bar;
|
error[E0573]: expected type, found function `Bar`
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-ns2.rs:41:18
2018-08-08 12:28:26 +00:00
|
LL | let _x : Box<Bar>; //~ ERROR expected type, found function `Bar`
| ^^^ not a type
help: possible better candidates are found in other modules, you can import them into scope
|
LL | use foo1::Bar;
|
LL | use foo2::Bar;
|
LL | use foo3::Bar;
|
error[E0573]: expected type, found function `Bar`
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-ns2.rs:47:17
2018-08-08 12:28:26 +00:00
|
LL | let _x: Box<Bar>; //~ ERROR expected type, found function `Bar`
| ^^^
help: a struct with a similar name exists
|
LL | let _x: Box<Baz>; //~ ERROR expected type, found function `Bar`
| ^^^
2018-08-08 12:28:26 +00:00
help: possible better candidates are found in other modules, you can import them into scope
|
LL | use foo1::Bar;
|
LL | use foo2::Bar;
|
LL | use foo3::Bar;
|
error[E0603]: trait `Bar` is private
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-ns2.rs:60:15
2018-08-08 12:28:26 +00:00
|
LL | use foo3::Bar; //~ ERROR `Bar` is private
| ^^^
2018-08-08 12:28:26 +00:00
error[E0603]: trait `Bar` is private
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-ns2.rs:64:15
2018-08-08 12:28:26 +00:00
|
LL | use foo3::Bar; //~ ERROR `Bar` is private
| ^^^
2018-08-08 12:28:26 +00:00
error[E0603]: trait `Bar` is private
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-ns2.rs:71:16
2018-08-08 12:28:26 +00:00
|
LL | use foo3::{Bar,Baz}; //~ ERROR `Bar` is private
| ^^^
error: aborting due to 7 previous errors
Some errors occurred: E0423, E0573, E0603.
For more information about an error, try `rustc --explain E0423`.