rustc/tests/ui/inference/issue-113354.fixed
2024-05-27 22:45:50 +02:00

5 lines
107 B
Plaintext

//run-rustfix
fn main() {
let _ = || { while let Some(_) = Some(1) { } }; //~ ERROR mismatched types
}