mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
14 lines
160 B
Rust
14 lines
160 B
Rust
![]() |
//@ check-pass
|
||
|
|
||
|
#![deny(keyword_idents_2024)]
|
||
|
|
||
|
macro_rules! foo {
|
||
|
($gen:expr) => {
|
||
|
$gen
|
||
|
};
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
foo!(println!("hello, world"));
|
||
|
}
|