blob: 8ebc730755faa3546955ff178666255e6fc72c4b [file] [log] [blame]
// compile-pass
// skip-codegen
macro_rules! m {
() => { #[cfg(any())] fn f() {} }
}
trait T {}
impl T for () { m!(); }
fn main() {}