summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-87771-ice-assign-assign-to-bool.stderr
blob: 56817ee2ca9f823f71b060b4cedf994edcb8e83e (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0308]: mismatched types
  --> $DIR/issue-87771-ice-assign-assign-to-bool.rs:3:9
   |
LL |     let mut a;
   |         ----- expected due to the type of this binding
LL |     a = a = true;
   |         ^^^^^^^^ expected `bool`, found `()`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.