2019-07-08 18:58:42 +00:00
|
|
|
error[E0432]: unresolved import `my_core`
|
2023-07-02 15:29:37 +00:00
|
|
|
--> $DIR/extern-prelude-from-opaque-fail.rs:21:9
|
2019-07-08 18:58:42 +00:00
|
|
|
|
|
|
|
|
LL | use my_core;
|
2022-12-27 07:17:22 +00:00
|
|
|
| ^^^^^^^ no `my_core` in the root
|
2019-07-08 18:58:42 +00:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `my_core`
|
2023-07-02 15:29:37 +00:00
|
|
|
--> $DIR/extern-prelude-from-opaque-fail.rs:8:13
|
2019-07-08 18:58:42 +00:00
|
|
|
|
|
|
|
|
LL | use my_core;
|
|
|
|
| ^^^^^^^ no `my_core` in the root
|
|
|
|
...
|
|
|
|
LL | a!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| ---- in this macro invocation
|
2019-12-16 13:56:47 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `a` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-07-08 18:58:42 +00:00
|
|
|
|
2020-08-27 12:27:14 +00:00
|
|
|
error[E0433]: failed to resolve: use of undeclared crate or module `my_core`
|
2023-07-02 15:29:37 +00:00
|
|
|
--> $DIR/extern-prelude-from-opaque-fail.rs:12:18
|
2019-07-08 18:58:42 +00:00
|
|
|
|
|
|
|
|
LL | fn f() { my_core::mem::drop(0); }
|
2020-08-27 12:27:14 +00:00
|
|
|
| ^^^^^^^ use of undeclared crate or module `my_core`
|
2019-07-08 18:58:42 +00:00
|
|
|
...
|
|
|
|
LL | a!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| ---- in this macro invocation
|
2019-12-16 13:56:47 +00:00
|
|
|
|
|
2023-07-07 02:19:30 +00:00
|
|
|
= help: consider importing this module:
|
|
|
|
my_core::mem
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `a` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-07-08 18:58:42 +00:00
|
|
|
|
2020-08-27 12:27:14 +00:00
|
|
|
error[E0433]: failed to resolve: use of undeclared crate or module `my_core`
|
2023-07-02 15:29:37 +00:00
|
|
|
--> $DIR/extern-prelude-from-opaque-fail.rs:25:14
|
2019-07-08 18:58:42 +00:00
|
|
|
|
|
|
|
|
LL | fn f() { my_core::mem::drop(0); }
|
2020-08-27 12:27:14 +00:00
|
|
|
| ^^^^^^^ use of undeclared crate or module `my_core`
|
2023-07-07 02:19:30 +00:00
|
|
|
|
|
|
|
|
help: consider importing this module
|
|
|
|
|
|
|
|
|
LL + use my_core::mem;
|
|
|
|
|
|
|
|
|
help: if you import `mem`, refer to it directly
|
|
|
|
|
|
|
|
|
LL - fn f() { my_core::mem::drop(0); }
|
|
|
|
LL + fn f() { mem::drop(0); }
|
|
|
|
|
|
2019-07-08 18:58:42 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
Some errors have detailed explanations: E0432, E0433.
|
|
|
|
For more information about an error, try `rustc --explain E0432`.
|