summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/option-to-bool.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/option-to-bool.stderr')
-rw-r--r--tests/ui/suggestions/option-to-bool.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/suggestions/option-to-bool.stderr b/tests/ui/suggestions/option-to-bool.stderr
new file mode 100644
index 000000000..4050c7be8
--- /dev/null
+++ b/tests/ui/suggestions/option-to-bool.stderr
@@ -0,0 +1,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`.