2017-12-10 03:30:47 +03:00
|
|
|
error[E0432]: unresolved import `core`
|
|
|
|
|
--> $DIR/feature-gate-extern_absolute_paths.rs:11:5
|
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use core::default; //~ ERROR unresolved import `core`
|
2017-12-10 03:30:47 +03:00
|
|
|
| ^^^^ Maybe a missing `extern crate core;`?
|
|
|
|
|
|
|
|
|
|
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
|
|
|
|
|
--> $DIR/feature-gate-extern_absolute_paths.rs:14:19
|
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: u8 = ::core::default::Default(); //~ ERROR failed to resolve
|
2017-12-10 03:30:47 +03:00
|
|
|
| ^^^^ Maybe a missing `extern crate core;`?
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
You've got a few errors: E0432, E0433
|
|
|
|
|
If you want more information on an error, try using "rustc --explain E0432"
|