rust/src/test/ui/tuple/indexing-in-macro.rs

10 lines
171 B
Rust
Raw Normal View History

// Broken by https://github.com/rust-lang/rust/pull/70420.
macro_rules! m {
(.$l:literal) => {};
}
m!(.0.0); //~ ERROR no rules expected the token `.`
fn main() {}