rust/tests/crashes/140479.rs
Matthias Krüger 0443a66d39 more ice tests
2025-05-18 17:25:34 +02:00

6 lines
114 B
Rust

//@ known-bug: #140479
macro_rules! a { ( $( { $ [ $b:c ] } )) => ( $(${ concat(d, $b)} ))}
fn e() {
a!({})
}