summaryrefslogtreecommitdiffstats
path: root/src/test/ui/expr/if/bad-if-let-suggestion.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/expr/if/bad-if-let-suggestion.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/expr/if/bad-if-let-suggestion.stderr')
-rw-r--r--src/test/ui/expr/if/bad-if-let-suggestion.stderr69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/test/ui/expr/if/bad-if-let-suggestion.stderr b/src/test/ui/expr/if/bad-if-let-suggestion.stderr
new file mode 100644
index 000000000..60d286fed
--- /dev/null
+++ b/src/test/ui/expr/if/bad-if-let-suggestion.stderr
@@ -0,0 +1,69 @@
+error: `let` expressions are not supported here
+ --> $DIR/bad-if-let-suggestion.rs:5:8
+ |
+LL | if let x = 1 && i = 2 {}
+ | ^^^^^^^^^
+ |
+ = note: only supported directly in conditions of `if` and `while` expressions
+
+error[E0425]: cannot find value `i` in this scope
+ --> $DIR/bad-if-let-suggestion.rs:5:21
+ |
+LL | if let x = 1 && i = 2 {}
+ | ^ not found in this scope
+
+error[E0425]: cannot find value `i` in this scope
+ --> $DIR/bad-if-let-suggestion.rs:13:9
+ |
+LL | fn a() {
+ | ------ similarly named function `a` defined here
+...
+LL | if (i + j) = i {}
+ | ^ help: a function with a similar name exists: `a`
+
+error[E0425]: cannot find value `j` in this scope
+ --> $DIR/bad-if-let-suggestion.rs:13:13
+ |
+LL | fn a() {
+ | ------ similarly named function `a` defined here
+...
+LL | if (i + j) = i {}
+ | ^ help: a function with a similar name exists: `a`
+
+error[E0425]: cannot find value `i` in this scope
+ --> $DIR/bad-if-let-suggestion.rs:13:18
+ |
+LL | fn a() {
+ | ------ similarly named function `a` defined here
+...
+LL | if (i + j) = i {}
+ | ^ help: a function with a similar name exists: `a`
+
+error[E0425]: cannot find value `x` in this scope
+ --> $DIR/bad-if-let-suggestion.rs:20:8
+ |
+LL | fn a() {
+ | ------ similarly named function `a` defined here
+...
+LL | if x[0] = 1 {}
+ | ^ help: a function with a similar name exists: `a`
+
+error[E0658]: `let` expressions in this position are unstable
+ --> $DIR/bad-if-let-suggestion.rs:5:8
+ |
+LL | if let x = 1 && i = 2 {}
+ | ^^^^^^^^^
+ |
+ = note: see issue #53667 <https://github.com/rust-lang/rust/issues/53667> for more information
+ = help: add `#![feature(let_chains)]` to the crate attributes to enable
+
+error[E0308]: mismatched types
+ --> $DIR/bad-if-let-suggestion.rs:5:8
+ |
+LL | if let x = 1 && i = 2 {}
+ | ^^^^^^^^^^^^^^^^^^ expected `bool`, found `()`
+
+error: aborting due to 8 previous errors
+
+Some errors have detailed explanations: E0308, E0425, E0658.
+For more information about an error, try `rustc --explain E0308`.