blob: 6ca1eb568616c0a479a4f2215fe3dac471bd112e [file] [log] [blame]
// Test macro_undefined issue
mod m {
#[macro_export]
macro_rules! kl {
() => ()
}
}
fn main() {
k!(); //~ ERROR cannot find
kl!();
}