Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ force-host
//@ no-prefer-dynamic
#![crate_type = "proc-macro"]
#[macro_export]
macro_rules! foo { //~ ERROR cannot export macro_rules! macros from a `proc-macro` crate type
($e:expr) => ($e)
}