mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 00:24:03 +00: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 );
|
|
}
|