summary refs log tree commit diff
path: root/src/test/ui/issues/issue-40845.rs
blob: c9102f4417c17c99ebb9cc70256f568046c7ea88 (plain)
1
2
3
4
5
6
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() {}