]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-extern_absolute_paths.stderr
Rollup merge of #106591 - Ezrashaw:attempted-integer-identifer, r=Estebank
[rust.git] / tests / ui / feature-gates / feature-gate-extern_absolute_paths.stderr
1 error[E0432]: unresolved import `core`
2   --> $DIR/feature-gate-extern_absolute_paths.rs:1:5
3    |
4 LL | use core::default;
5    |     ^^^^ maybe a missing crate `core`?
6    |
7    = help: consider adding `extern crate core` to use the `core` crate
8
9 error[E0433]: failed to resolve: maybe a missing crate `core`?
10   --> $DIR/feature-gate-extern_absolute_paths.rs:4:19
11    |
12 LL |     let _: u8 = ::core::default::Default();
13    |                   ^^^^ maybe a missing crate `core`?
14    |
15    = help: consider adding `extern crate core` to use the `core` crate
16
17 error: aborting due to 2 previous errors
18
19 Some errors have detailed explanations: E0432, E0433.
20 For more information about an error, try `rustc --explain E0432`.