2019-08-03 18:07:35 -05:00
|
|
|
error[E0425]: cannot find value `A` in crate `namespaced_enums`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/enums-are-namespaced-xc.rs:5:31
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = namespaced_enums::A;
|
2017-03-08 13:15:12 -06:00
|
|
|
| ^ not found in `namespaced_enums`
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2017-05-10 06:19:29 -05:00
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
2017-06-28 01:16:04 -05:00
|
|
|
|
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | use namespaced_enums::Foo::A;
|
2017-07-05 18:39:06 -05:00
|
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2019-08-03 18:07:35 -05:00
|
|
|
error[E0425]: cannot find function `B` in crate `namespaced_enums`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/enums-are-namespaced-xc.rs:7:31
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = namespaced_enums::B(10);
|
2017-03-08 13:15:12 -06:00
|
|
|
| ^ not found in `namespaced_enums`
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2017-05-10 06:19:29 -05:00
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
2017-06-28 01:16:04 -05:00
|
|
|
|
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | use namespaced_enums::Foo::B;
|
2017-07-05 18:39:06 -05:00
|
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2019-08-03 18:07:35 -05:00
|
|
|
error[E0422]: cannot find struct, variant or union type `C` in crate `namespaced_enums`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/enums-are-namespaced-xc.rs:9:31
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = namespaced_enums::C { a: 10 };
|
2017-03-08 13:15:12 -06:00
|
|
|
| ^ not found in `namespaced_enums`
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2017-05-10 06:19:29 -05:00
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
2017-06-28 01:16:04 -05:00
|
|
|
|
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | use namespaced_enums::Foo::C;
|
2017-07-05 18:39:06 -05:00
|
|
|
|
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0422, E0425.
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about an error, try `rustc --explain E0422`.
|