8 lines
119 B
Rust
8 lines
119 B
Rust
//@ known-bug: rust-lang/rust#126744
|
|
struct X {,}
|
|
|
|
fn main() {
|
|
|| {
|
|
if let X { x: 1,} = (X {}) {}
|
|
};
|
|
}
|