rust/tests/crashes/126744.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
119 B
Rust
Raw Normal View History

2024-06-23 16:14:44 +00:00
//@ known-bug: rust-lang/rust#126744
struct X {,}
fn main() {
|| {
if let X { x: 1,} = (X {}) {}
};
}