]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro_undefined.rs
Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen
[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 }