rust/tests/ui/macros/macro-nt-list.rs
2024-02-16 20:02:50 +00:00

22 lines
346 B
Rust

//@ run-pass
//@ pretty-expanded FIXME #23616
macro_rules! list {
( ($($id:ident),*) ) => (());
( [$($id:ident),*] ) => (());
( {$($id:ident),*} ) => (());
}
macro_rules! tt_list {
( ($($tt:tt),*) ) => (());
}
pub fn main() {
list!( () );
list!( [] );
list!( {} );
tt_list!( (a, b, c) );
tt_list!( () );
}