summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/expr-as-stmt-2.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /src/test/ui/parser/expr-as-stmt-2.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/parser/expr-as-stmt-2.stderr')
-rw-r--r--src/test/ui/parser/expr-as-stmt-2.stderr46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/test/ui/parser/expr-as-stmt-2.stderr b/src/test/ui/parser/expr-as-stmt-2.stderr
deleted file mode 100644
index 2b6314c38..000000000
--- a/src/test/ui/parser/expr-as-stmt-2.stderr
+++ /dev/null
@@ -1,46 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/expr-as-stmt-2.rs:3:26
- |
-LL | if let Some(x) = a { true } else { false }
- | ---------------------^^^^-----------------
- | | |
- | | expected `()`, found `bool`
- | expected this to be `()`
- |
-help: you might have meant to return this value
- |
-LL | if let Some(x) = a { return true; } else { false }
- | ++++++ +
-
-error[E0308]: mismatched types
- --> $DIR/expr-as-stmt-2.rs:3:40
- |
-LL | if let Some(x) = a { true } else { false }
- | -----------------------------------^^^^^--
- | | |
- | | expected `()`, found `bool`
- | expected this to be `()`
- |
-help: you might have meant to return this value
- |
-LL | if let Some(x) = a { true } else { return false; }
- | ++++++ +
-
-error[E0308]: mismatched types
- --> $DIR/expr-as-stmt-2.rs:6:5
- |
-LL | fn foo(a: Option<u32>, b: Option<u32>) -> bool {
- | ---- expected `bool` because of return type
-...
-LL | / &&
-LL | | if let Some(y) = a { true } else { false }
- | |______________________________________________^ expected `bool`, found `&&bool`
- |
-help: parentheses are required to parse this as an expression
- |
-LL | (if let Some(x) = a { true } else { false })
- | + +
-
-error: aborting due to 3 previous errors
-
-For more information about this error, try `rustc --explain E0308`.