2017-12-09 18:30:47 -06:00
|
|
|
error[E0432]: unresolved import `core`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/feature-gate-extern_absolute_paths.rs:1:5
|
2017-12-09 18:30:47 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use core::default;
|
2018-11-13 17:52:26 -06:00
|
|
|
| ^^^^ maybe a missing `extern crate core;`?
|
2017-12-09 18:30:47 -06:00
|
|
|
|
2018-11-13 17:52:26 -06:00
|
|
|
error[E0433]: failed to resolve: maybe a missing `extern crate core;`?
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/feature-gate-extern_absolute_paths.rs:4:19
|
2017-12-09 18:30:47 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let _: u8 = ::core::default::Default();
|
2018-11-13 17:52:26 -06:00
|
|
|
| ^^^^ maybe a missing `extern crate core;`?
|
2017-12-09 18:30:47 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0432, E0433.
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about an error, try `rustc --explain E0432`.
|