]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-path-prelude-fail-1.rs
Auto merge of #57118 - Zoxc:query-stats, r=wesleywiser
[rust.git] / src / test / ui / macros / macro-path-prelude-fail-1.rs
1 #![feature(extern_prelude)]
2
3 mod m {
4     fn check() {
5         Vec::clone!(); //~ ERROR failed to resolve: not a module `Vec`
6         u8::clone!(); //~ ERROR failed to resolve: not a module `u8`
7     }
8 }
9
10 fn main() {}