rust/tests/ui/closures/2229_closure_analysis/migrations/issue-78720.rs
2023-01-11 09:32:08 +00:00

11 lines
186 B
Rust

// run-pass
#![warn(rust_2021_incompatible_closure_captures)]
fn main() {
if let a = "" {
//~^ WARNING: irrefutable `if let` pattern
drop(|_: ()| drop(a));
}
}