rust/tests/ui/suggestions/option-to-bool.stderr
Urgau 3ba0139c66 Remove useless configs in tests
Since they are never set and don't have impact on the test.

Or for the cfg-panic tests are already tested with check-cfg.
2024-04-07 01:16:45 +02:00

19 lines
534 B
Plaintext

error[E0308]: mismatched types
--> $DIR/option-to-bool.rs:2:16
|
LL | if true && x {}
| ---- ^ expected `bool`, found `Option<i32>`
| |
| 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 1 previous error
For more information about this error, try `rustc --explain E0308`.