mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 09:13:50 +00:00
15 lines
175 B
Rust
15 lines
175 B
Rust
//@ check-pass
|
|
|
|
macro_rules! foo {
|
|
() => {
|
|
#[allow(unreachable_patterns)]
|
|
{
|
|
123i32
|
|
}
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
let _ = foo!().abs();
|
|
}
|