blob: c9102f4417c17c99ebb9cc70256f568046c7ea88 [file] [log] [blame]
trait T { m!(); } //~ ERROR cannot find macro `m!` in this scope
struct S;
impl S { m!(); } //~ ERROR cannot find macro `m!` in this scope
fn main() {}