]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/builtin-prelude-no-accidents.stderr
Rollup merge of #106714 - Ezrashaw:remove-e0490, r=davidtwco
[rust.git] / tests / ui / macros / builtin-prelude-no-accidents.stderr
1 error[E0433]: failed to resolve: use of undeclared crate or module `env`
2   --> $DIR/builtin-prelude-no-accidents.rs:5:5
3    |
4 LL |     env::current_dir;
5    |     ^^^ use of undeclared crate or module `env`
6
7 error[E0433]: failed to resolve: use of undeclared crate or module `panic`
8   --> $DIR/builtin-prelude-no-accidents.rs:6:14
9    |
10 LL |     type A = panic::PanicInfo;
11    |              ^^^^^ use of undeclared crate or module `panic`
12
13 error[E0433]: failed to resolve: use of undeclared crate or module `vec`
14   --> $DIR/builtin-prelude-no-accidents.rs:7:14
15    |
16 LL |     type B = vec::Vec<u8>;
17    |              ^^^ use of undeclared crate or module `vec`
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0433`.