cb58668748
This reverts commit 0c0dfb88ee
.
18 lines
281 B
Rust
18 lines
281 B
Rust
//@ check-pass
|
|
//@ edition:2021
|
|
|
|
macro_rules! m {
|
|
() => {
|
|
trait MacroTrait {}
|
|
struct OutsideStruct;
|
|
fn my_func() {
|
|
impl MacroTrait for OutsideStruct {}
|
|
//~^ WARN non-local `impl` definition
|
|
}
|
|
}
|
|
}
|
|
|
|
m!();
|
|
|
|
fn main() {}
|