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