]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/issue-87771-ice-assign-assign-to-bool.rs
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / typeck / issue-87771-ice-assign-assign-to-bool.rs
1 fn main() {
2     let mut a;
3     a = a = true; //~ ERROR mismatched types
4 }