2018-11-13 17:52:26 -06:00
|
|
|
error[E0433]: failed to resolve: not a module `Vec`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-path-prelude-fail-1.rs:5:9
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
2018-11-13 17:52:26 -06:00
|
|
|
LL | Vec::clone!(); //~ ERROR failed to resolve: not a module `Vec`
|
|
|
|
| ^^^ not a module `Vec`
|
2018-07-22 18:52:51 -05:00
|
|
|
|
2018-11-13 17:52:26 -06:00
|
|
|
error[E0433]: failed to resolve: not a module `u8`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-path-prelude-fail-1.rs:6:9
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
2018-11-13 17:52:26 -06:00
|
|
|
LL | u8::clone!(); //~ ERROR failed to resolve: not a module `u8`
|
|
|
|
| ^^ not a module `u8`
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|