mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 04:39:16 +00:00
11 lines
132 B
Rust
11 lines
132 B
Rust
//@ edition: 2021
|
|
|
|
macro_rules! w {
|
|
($($tt:tt)*) => {};
|
|
}
|
|
|
|
w!('foo#lifetime);
|
|
//~^ ERROR prefix `'foo` is unknown
|
|
|
|
fn main() {}
|