]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-extern_absolute_paths.stderr
Rollup merge of #94271 - RalfJung:downcast, r=oli-obk
[rust.git] / src / test / 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 error[E0433]: failed to resolve: maybe a missing crate `core`?
8   --> $DIR/feature-gate-extern_absolute_paths.rs:4:19
9    |
10 LL |     let _: u8 = ::core::default::Default();
11    |                   ^^^^ maybe a missing crate `core`?
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0432, E0433.
16 For more information about an error, try `rustc --explain E0432`.