]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-path-prelude-pass.rs
Move /src/test to /tests
[rust.git] / tests / ui / macros / macro-path-prelude-pass.rs
1 // check-pass
2
3 mod m {
4     fn check() {
5         std::panic!(); // OK
6     }
7 }
8
9 fn main() {}