rust/src/test/ui/macros/macro-path-prelude-fail-1.stderr
2018-12-25 21:08:33 -07:00

16 lines
533 B
Plaintext

error[E0433]: failed to resolve: not a module `Vec`
--> $DIR/macro-path-prelude-fail-1.rs:5:9
|
LL | Vec::clone!(); //~ ERROR failed to resolve: not a module `Vec`
| ^^^ not a module `Vec`
error[E0433]: failed to resolve: not a module `u8`
--> $DIR/macro-path-prelude-fail-1.rs:6:9
|
LL | u8::clone!(); //~ ERROR failed to resolve: not a module `u8`
| ^^ not a module `u8`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0433`.