2019-09-15 05:12:14 -05:00
|
|
|
trait T { m!(); } //~ ERROR cannot find macro `m` in this scope
|
2017-03-27 00:22:18 -05:00
|
|
|
|
|
|
|
struct S;
|
2019-09-15 05:12:14 -05:00
|
|
|
impl S { m!(); } //~ ERROR cannot find macro `m` in this scope
|
2017-03-27 00:22:18 -05:00
|
|
|
|
|
|
|
fn main() {}
|