You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fnmain(){unsafe{let x = asm!("");println!("hi {:?}", x);}}
due to a missing #![feature(asm)]
Unfortunately, this variant program is accepted by the compiler:
fnmain(){unsafe{println!("hi {:?}", asm!(""));}}
The reason (I think) is that the fn visit_mac in feature_gate::MacroVisitor needs to recursively invoke the visitor on the expression inputs to the macro.