]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro_undefined.rs
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / 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 }