summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/option-to-bool.stderr
blob: 4050c7be82a0af369c459b9cc5f36217cc153746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0308]: mismatched types
  --> $DIR/option-to-bool.rs:4:16
   |
LL |     if true && x {}
   |        ----    ^ expected `bool`, found enum `Option`
   |        |
   |        expected because this is `bool`
   |
   = note: expected type `bool`
              found enum `Option<i32>`
help: use `Option::is_some` to test if the `Option` has a value
   |
LL |     if true && x.is_some() {}
   |                 ++++++++++

error: aborting due to previous error

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