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

109 lines
2.3 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0423]: expected function, found trait `Bar`
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-ns2.rs:20:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | Bar();
2018-08-08 07:28:26 -05:00
| ^^^ not a function
|
2018-08-08 07:28:26 -05: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[E0423]: expected function, found trait `Bar`
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-ns2.rs:26:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | Bar();
| ^^^
|
help: a unit struct with a similar name exists
|
2019-03-09 06:03:44 -06:00
LL | Baz();
| ^^^
2018-08-08 07:28:26 -05: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 09:56:47 -06:00
--> $DIR/privacy-ns2.rs:41:18
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _x : Box<Bar>;
2018-08-08 07:28:26 -05:00
| ^^^ not a type
|
2018-08-08 07:28:26 -05: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`
2019-10-19 12:13:56 -05:00
--> $DIR/privacy-ns2.rs:42:14
|
LL | let _x : Bar();
| ^^^^^ not a type
help: use `=` if you meant to assign
|
LL | let _x = Bar();
| ^
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`
--> $DIR/privacy-ns2.rs:48:17
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _x: Box<Bar>;
| ^^^
|
help: a struct with a similar name exists
|
2019-03-09 06:03:44 -06:00
LL | let _x: Box<Baz>;
| ^^^
2018-08-08 07:28:26 -05: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
2019-10-19 12:13:56 -05:00
--> $DIR/privacy-ns2.rs:61:15
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | use foo3::Bar;
| ^^^
2018-08-08 07:28:26 -05:00
error[E0603]: trait `Bar` is private
2019-10-19 12:13:56 -05:00
--> $DIR/privacy-ns2.rs:65:15
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | use foo3::Bar;
| ^^^
2018-08-08 07:28:26 -05:00
error[E0603]: trait `Bar` is private
2019-10-19 12:13:56 -05:00
--> $DIR/privacy-ns2.rs:72:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | use foo3::{Bar,Baz};
2018-08-08 07:28:26 -05:00
| ^^^
2019-10-19 12:13:56 -05:00
error: aborting due to 8 previous errors
2018-08-08 07:28:26 -05:00
2019-10-09 07:19:48 -05:00
Some errors have detailed explanations: E0423, E0573, E0603.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0423`.