]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro_undefined.rs
Rollup merge of #106973 - oli-obk:tait_ice_closure_in_impl_header, r=lcnr
[rust.git] / tests / ui / macros / macro_undefined.rs
1 // Test macro_undefined issue
2
3 mod m {
4     #[macro_export]
5     macro_rules! kl {
6         () => ()
7     }
8 }
9
10 fn main() {
11     k!(); //~ ERROR cannot find
12     kl!();
13 }