2019-10-14 19:20:50 -05:00
|
|
|
error[E0423]: expected function, tuple struct or tuple variant, 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();
|
2019-10-14 19:20:50 -05:00
|
|
|
| ^^^ not a function, tuple struct or tuple variant
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2020-06-13 12:58:46 -05:00
|
|
|
help: consider importing this function instead
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use foo2::Bar;
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
|
2019-10-14 19:20:50 -05:00
|
|
|
error[E0423]: expected function, tuple struct or tuple variant, 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-10-14 19:20:50 -05:00
|
|
|
LL | pub struct Baz;
|
|
|
|
| --------------- similarly named unit struct `Baz` defined here
|
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Bar();
|
2019-01-09 13:11:00 -06:00
|
|
|
| ^^^
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2019-01-09 13:11:00 -06:00
|
|
|
help: a unit struct with a similar name exists
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Baz();
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~
|
2020-06-13 12:58:46 -05:00
|
|
|
help: consider importing this function instead
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use foo2::Bar;
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0573]: expected type, found function `Bar`
|
2020-11-13 13:23:37 -06:00
|
|
|
--> $DIR/privacy-ns2.rs:42:14
|
2019-10-19 12:13:56 -05:00
|
|
|
|
|
|
|
|
LL | let _x : Bar();
|
|
|
|
| ^^^^^ not a type
|
2019-10-26 17:34:28 -05:00
|
|
|
|
|
2019-10-19 12:13:56 -05:00
|
|
|
help: use `=` if you meant to assign
|
|
|
|
|
|
|
|
|
LL | let _x = Bar();
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~
|
2020-06-13 12:58:46 -05:00
|
|
|
help: consider importing this trait instead
|
2019-10-19 12:13:56 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use foo1::Bar;
|
2019-10-19 12:13:56 -05:00
|
|
|
|
|
|
|
|
|
2018-08-08 07:28:26 -05:00
|
|
|
error[E0603]: trait `Bar` is private
|
2020-11-13 13:23:37 -06: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;
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^^^ private trait
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
note: the trait `Bar` is defined here
|
2020-11-13 13:23:37 -06:00
|
|
|
--> $DIR/privacy-ns2.rs:53:5
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
LL | trait Bar {
|
|
|
|
| ^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0603]: trait `Bar` is private
|
2020-11-13 13:23:37 -06: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;
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^^^ private trait
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
note: the trait `Bar` is defined here
|
2020-11-13 13:23:37 -06:00
|
|
|
--> $DIR/privacy-ns2.rs:53:5
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
LL | trait Bar {
|
|
|
|
| ^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0603]: trait `Bar` is private
|
2020-11-13 13:23:37 -06: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};
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^^^ private trait
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
note: the trait `Bar` is defined here
|
2020-11-13 13:23:37 -06:00
|
|
|
--> $DIR/privacy-ns2.rs:53:5
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
|
|
|
LL | trait Bar {
|
|
|
|
| ^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-11-13 13:23:37 -06:00
|
|
|
error[E0747]: constant provided when a type was expected
|
2019-11-18 13:57:46 -06:00
|
|
|
--> $DIR/privacy-ns2.rs:41:18
|
|
|
|
|
|
|
|
|
LL | let _x : Box<Bar>;
|
2020-11-13 13:23:37 -06:00
|
|
|
| ^^^
|
2021-04-24 09:25:36 -05:00
|
|
|
|
|
|
|
|
= help: `Bar` is a function item, not a type
|
|
|
|
= help: function item types cannot be named directly
|
2019-11-18 13:57:46 -06:00
|
|
|
|
2020-11-13 13:23:37 -06:00
|
|
|
error[E0747]: constant provided when a type was expected
|
|
|
|
--> $DIR/privacy-ns2.rs:48:17
|
2019-11-18 13:57:46 -06:00
|
|
|
|
|
|
|
|
LL | let _x: Box<Bar>;
|
2020-11-13 13:23:37 -06:00
|
|
|
| ^^^
|
2021-04-24 09:25:36 -05:00
|
|
|
|
|
|
|
|
= help: `Bar` is a function item, not a type
|
|
|
|
= help: function item types cannot be named directly
|
2019-11-18 13:57:46 -06:00
|
|
|
|
2020-11-13 13:23:37 -06:00
|
|
|
error: aborting due to 8 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-11-13 13:23:37 -06:00
|
|
|
Some errors have detailed explanations: E0423, E0573, E0603, E0747.
|
|
|
|
For more information about an error, try `rustc --explain E0423`.
|