mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 05:25:37 +03:00
11 lines
118 B
Rust
11 lines
118 B
Rust
// rustfmt-edition: 2018
|
|
|
|
macro_rules! token {
|
|
($t:tt) => {};
|
|
}
|
|
|
|
fn main() {
|
|
token!(dyn);
|
|
token!(dyn );
|
|
}
|