2018-05-13 19:22:52 -05:00
|
|
|
#![feature(extern_prelude)]
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
|
|
mod m {
|
|
|
|
fn check() {
|
2018-11-13 17:52:26 -06:00
|
|
|
Vec::clone!(); //~ ERROR failed to resolve: not a module `Vec`
|
|
|
|
u8::clone!(); //~ ERROR failed to resolve: not a module `u8`
|
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() {}
|