]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro_undefined.rs
Move /src/test to /tests
[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 }