2018-11-11 20:28:56 +03:00
|
|
|
error: cannot import a built-in macro
|
2018-12-27 03:38:43 +03:00
|
|
|
--> $DIR/prelude-fail.rs:4:5
|
2018-11-11 20:28:56 +03:00
|
|
|
|
|
|
|
|
LL | use env as env_imported; //~ ERROR cannot import a built-in macro
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0432]: unresolved import `rustfmt`
|
2018-12-27 03:38:43 +03:00
|
|
|
--> $DIR/prelude-fail.rs:7:5
|
2018-11-11 20:28:56 +03:00
|
|
|
|
|
|
|
|
LL | use rustfmt::skip as imported_rustfmt_skip; //~ ERROR unresolved import `rustfmt`
|
2018-11-14 02:52:26 +03:00
|
|
|
| ^^^^^^^ not a module `rustfmt`
|
2018-11-11 20:28:56 +03:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|