0c0dfb88ee
as request T-lang is requesting some major changes in the lint inner workings in #126768#issuecomment-2192634762
20 lines
314 B
Rust
20 lines
314 B
Rust
//@ check-pass
|
|
//@ edition:2021
|
|
|
|
#![warn(non_local_definitions)]
|
|
|
|
macro_rules! m {
|
|
() => {
|
|
trait MacroTrait {}
|
|
struct OutsideStruct;
|
|
fn my_func() {
|
|
impl MacroTrait for OutsideStruct {}
|
|
//~^ WARN non-local `impl` definition
|
|
}
|
|
}
|
|
}
|
|
|
|
m!();
|
|
|
|
fn main() {}
|