2019-08-04 02:07:35 +03:00
|
|
|
error[E0425]: cannot find value `A` in crate `namespaced_enums`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/enums-are-namespaced-xc.rs:5:31
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _ = namespaced_enums::A;
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^ not found in `namespaced_enums`
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-05-03 02:07:47 +00:00
|
|
|
help: consider importing this unit variant
|
2017-06-27 23:16:04 -07:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use namespaced_enums::Foo::A;
|
2017-07-05 16:39:06 -07:00
|
|
|
|
|
2022-05-03 02:07:47 +00:00
|
|
|
help: if you import `A`, refer to it directly
|
2022-04-23 16:41:36 -07:00
|
|
|
|
|
|
|
|
LL - let _ = namespaced_enums::A;
|
|
|
|
LL + let _ = A;
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
error[E0425]: cannot find function, tuple struct or tuple variant `B` in crate `namespaced_enums`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/enums-are-namespaced-xc.rs:7:31
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _ = namespaced_enums::B(10);
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^ not found in `namespaced_enums`
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-05-03 02:07:47 +00:00
|
|
|
help: consider importing this tuple variant
|
2017-06-27 23:16:04 -07:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use namespaced_enums::Foo::B;
|
2017-07-05 16:39:06 -07:00
|
|
|
|
|
2022-05-03 02:07:47 +00:00
|
|
|
help: if you import `B`, refer to it directly
|
2022-04-23 16:41:36 -07:00
|
|
|
|
|
|
|
|
LL - let _ = namespaced_enums::B(10);
|
|
|
|
LL + let _ = B(10);
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2019-08-04 02:07:35 +03:00
|
|
|
error[E0422]: cannot find struct, variant or union type `C` in crate `namespaced_enums`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/enums-are-namespaced-xc.rs:9:31
|
2016-12-01 01:35:25 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _ = namespaced_enums::C { a: 10 };
|
2017-03-08 22:15:12 +03:00
|
|
|
| ^ not found in `namespaced_enums`
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-05-03 02:07:47 +00:00
|
|
|
help: consider importing this variant
|
2017-06-27 23:16:04 -07:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use namespaced_enums::Foo::C;
|
2017-07-05 16:39:06 -07:00
|
|
|
|
|
2022-05-03 02:07:47 +00:00
|
|
|
help: if you import `C`, refer to it directly
|
2022-04-23 16:41:36 -07:00
|
|
|
|
|
|
|
|
LL - let _ = namespaced_enums::C { a: 10 };
|
|
|
|
LL + let _ = C { a: 10 };
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to 3 previous errors
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0422, E0425.
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about an error, try `rustc --explain E0422`.
|