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

12 lines
166 B
Rust

//@ known-bug: #140011
//@compile-flags: -Wrust-2021-incompatible-closure-captures
enum b {
c(d),
e(f),
}
struct f;
fn g() {
let h;
|| b::e(a) = h;
}