rust/tests/ui/macros/macro-followed-by-seq-bad.rs
2023-01-11 09:32:08 +00:00

12 lines
339 B
Rust

// Regression test for issue #25436: check that things which can be
// followed by any token also permit X* to come afterwards.
#![allow(unused_macros)]
macro_rules! foo {
( $a:expr $($b:tt)* ) => { }; //~ ERROR not allowed for `expr` fragments
( $a:ty $($b:tt)* ) => { }; //~ ERROR not allowed for `ty` fragments
}
fn main() { }