rust/src/test/ui/rust-2018/uniform-paths/prelude-fail.stderr

16 lines
412 B
Plaintext
Raw Normal View History

error: cannot import a built-in macro
2018-12-26 18:38:43 -06:00
--> $DIR/prelude-fail.rs:4:5
|
2019-03-09 06:03:44 -06:00
LL | use env as env_imported;
| ^^^^^^^^^^^^^^^^^^^
error[E0432]: unresolved import `rustfmt`
2018-12-26 18:38:43 -06:00
--> $DIR/prelude-fail.rs:7:5
|
2019-03-09 06:03:44 -06:00
LL | use rustfmt::skip as imported_rustfmt_skip;
| ^^^^^^^ not a module `rustfmt`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0432`.