summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/bool_typo_err_suggest.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/bool_typo_err_suggest.stderr')
-rw-r--r--src/test/ui/suggestions/bool_typo_err_suggest.stderr25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/ui/suggestions/bool_typo_err_suggest.stderr b/src/test/ui/suggestions/bool_typo_err_suggest.stderr
deleted file mode 100644
index 52bde07ca..000000000
--- a/src/test/ui/suggestions/bool_typo_err_suggest.stderr
+++ /dev/null
@@ -1,25 +0,0 @@
-error[E0425]: cannot find value `True` in this scope
- --> $DIR/bool_typo_err_suggest.rs:5:13
- |
-LL | let x = True;
- | ^^^^ not found in this scope
- |
-help: you may want to use a bool value instead
- |
-LL | let x = true;
- | ~~~~
-
-error[E0425]: cannot find value `False` in this scope
- --> $DIR/bool_typo_err_suggest.rs:9:13
- |
-LL | let y = False;
- | ^^^^^ not found in this scope
- |
-help: you may want to use a bool value instead
- |
-LL | let y = false;
- | ~~~~~
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0425`.