summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-112385-while-assign-lhs-place-expr-ice.rs
blob: 3cb011dc06fcd1574a2d32b955e83d81e3b74955 (plain)
1
2
3
4
5
6
7
8
9
// Previously, the while loop with an assignment statement (mistakenly) as the condition
// which has a place expr as the LHS would trigger an ICE in typeck.
// Reduced from https://github.com/rust-lang/rust/issues/112385.

fn main() {
    let foo = Some(());
    while Some(foo) = None {}
    //~^ ERROR mismatched types
}