summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-87771-ice-assign-assign-to-bool.rs
blob: 751dc8719cf33769b96e62909094fa39a0bf2b31 (plain)
1
2
3
4
fn main() {
    let mut a;
    a = a = true; //~ ERROR mismatched types
}