2018-07-22 18:52:51 -05:00
|
|
|
mod m {
|
|
|
|
fn check() {
|
2019-04-01 15:22:12 -05:00
|
|
|
Vec::clone!(); //~ ERROR failed to resolve: `Vec` is a struct, not a module
|
|
|
|
u8::clone!(); //~ ERROR failed to resolve: `u8` is a builtin type, not a module
|
2018-07-22 18:52:51 -05:00
|
|
|
}
|
2018-01-29 22:12:37 -06:00
|
|
|
}
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
|
|
fn main() {}
|