mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
15 lines
188 B
Rust
15 lines
188 B
Rust
//@ check-pass
|
|
|
|
#![warn(unused)]
|
|
|
|
macro_rules! expect_inside_macro {
|
|
() => {
|
|
#[expect(unused_variables)]
|
|
let x = 0;
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
expect_inside_macro!();
|
|
}
|