2018-07-23 02:52:51 +03:00
|
|
|
mod m {
|
|
|
|
fn check() {
|
2019-04-01 16:22:12 -04: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-23 02:52:51 +03:00
|
|
|
}
|
2018-01-30 13:12:37 +09:00
|
|
|
}
|
2018-07-23 02:52:51 +03:00
|
|
|
|
|
|
|
fn main() {}
|