2019-04-01 15:22:12 -05:00
|
|
|
error[E0433]: failed to resolve: `Vec` is a struct, not a module
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/macro-path-prelude-fail-1.rs:3:9
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | Vec::clone!();
|
2019-04-01 15:22:12 -05:00
|
|
|
| ^^^ `Vec` is a struct, not a module
|
2018-07-22 18:52:51 -05:00
|
|
|
|
2019-04-01 15:22:12 -05:00
|
|
|
error[E0433]: failed to resolve: `u8` is a builtin type, not a module
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/macro-path-prelude-fail-1.rs:4:9
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | u8::clone!();
|
2019-04-01 15:22:12 -05:00
|
|
|
| ^^ `u8` is a builtin type, not a module
|
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`.
|