mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 05:59:17 +00:00
9 lines
164 B
Rust
9 lines
164 B
Rust
macro_rules! lexes {($($_:tt)*) => {}}
|
|
|
|
lexes!(🐛#); //~ ERROR identifiers cannot contain emoji
|
|
lexes!(🐛"foo");
|
|
lexes!(🐛'q');
|
|
lexes!(🐛'q);
|
|
|
|
fn main() {}
|