]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-path-prelude-pass.rs
Rollup merge of #106244 - atouchet:readme3, r=workingjubilee
[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() {}