os-rust/tests/ui/pattern/usefulness/issue-88747.rs

15 lines
343 B
Rust
Raw Normal View History

//@ check-pass: this used to be a stack overflow because of recursion in `usefulness.rs`
2021-11-23 22:55:48 +01:00
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() {}