]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-path-prelude-fail-1.stderr
Rollup merge of #56425 - scottmcm:redo-vec-set_len-docs, r=Centril
[rust.git] / src / test / ui / macros / macro-path-prelude-fail-1.stderr
1 error[E0433]: failed to resolve: not a module `Vec`
2   --> $DIR/macro-path-prelude-fail-1.rs:5:9
3    |
4 LL |         Vec::clone!(); //~ ERROR failed to resolve: not a module `Vec`
5    |         ^^^ not a module `Vec`
6
7 error[E0433]: failed to resolve: not a module `u8`
8   --> $DIR/macro-path-prelude-fail-1.rs:6:9
9    |
10 LL |         u8::clone!(); //~ ERROR failed to resolve: not a module `u8`
11    |         ^^ not a module `u8`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0433`.