]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-path-prelude-pass.rs
Rollup merge of #106931 - Ezrashaw:docs-e0208, r=compiler-errors
[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() {}