]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-40845.rs
Rollup merge of #106896 - Ezrashaw:str-cast-bool-emptyness, r=compiler-errors
[rust.git] / tests / ui / issues / issue-40845.rs
1 trait T { m!(); } //~ ERROR cannot find macro `m` in this scope
2
3 struct S;
4 impl S { m!(); } //~ ERROR cannot find macro `m` in this scope
5
6 fn main() {}