summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/bool_typo_err_suggest.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/bool_typo_err_suggest.rs')
-rw-r--r--src/test/ui/suggestions/bool_typo_err_suggest.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/suggestions/bool_typo_err_suggest.rs b/src/test/ui/suggestions/bool_typo_err_suggest.rs
new file mode 100644
index 000000000..deab0fb05
--- /dev/null
+++ b/src/test/ui/suggestions/bool_typo_err_suggest.rs
@@ -0,0 +1,12 @@
+// Suggest the boolean value instead of emit a generic error that the value
+// True is not in the scope.
+
+fn main() {
+ let x = True;
+ //~^ ERROR cannot find value `True` in this scope
+ //~| HELP you may want to use a bool value instead
+
+ let y = False;
+ //~^ ERROR cannot find value `False` in this scope
+ //~| HELP you may want to use a bool value instead
+}