blob: 9b04e766be81fd426008b13e435a111eaae421cd [file] [log] [blame] [edit]
//@ check-pass: this used to be a stack overflow because of recursion in `usefulness.rs`
macro_rules! long_tuple_arg {
([$($t:tt)*]#$($h:tt)*) => {
long_tuple_arg!{[$($t)*$($t)*]$($h)*}
};
([$([$t:tt $y:tt])*]) => {
pub fn _f(($($t,)*): ($($y,)*)) {}
}
}
long_tuple_arg!{[[_ u8]]########## ###}
fn main() {}