Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Test macro_undefined issue
mod m {
#[macro_export]
macro_rules! kl {
() => ()
}
fn main() {
k!(); //~ ERROR cannot find
kl!();