summaryrefslogtreecommitdiffstats
path: root/src/test/ui/return/tail-expr-as-potential-return.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/return/tail-expr-as-potential-return.stderr')
-rw-r--r--src/test/ui/return/tail-expr-as-potential-return.stderr52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/test/ui/return/tail-expr-as-potential-return.stderr b/src/test/ui/return/tail-expr-as-potential-return.stderr
deleted file mode 100644
index 9183b4599..000000000
--- a/src/test/ui/return/tail-expr-as-potential-return.stderr
+++ /dev/null
@@ -1,52 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/tail-expr-as-potential-return.rs:27:9
- |
-LL | / if x {
-LL | | Err(42)
- | | ^^^^^^^ expected `()`, found enum `Result`
-LL | | //| HELP you might have meant to return this value
-LL | | }
- | |_____- expected this to be `()`
- |
- = note: expected unit type `()`
- found enum `Result<_, {integer}>`
-help: you might have meant to return this value
- |
-LL | return Err(42);
- | ++++++ +
-
-error[E0308]: mismatched types
- --> $DIR/tail-expr-as-potential-return.rs:43:9
- |
-LL | / if true {
-LL | | 1i32
- | | ^^^^ expected `()`, found `i32`
-LL | | //| HELP you might have meant to return this value
-LL | | }
- | |_____- expected this to be `()`
- |
-help: you might have meant to return this value
- |
-LL | return 1i32;
- | ++++++ +
-
-error[E0308]: mismatched types
- --> $DIR/tail-expr-as-potential-return.rs:19:9
- |
-LL | / if x {
-LL | | Err(42)
- | | ^^^^^^^ expected `()`, found enum `Result`
-LL | | //| HELP you might have meant to return this value
-LL | | }
- | |_____- expected this to be `()`
- |
- = note: expected unit type `()`
- found enum `Result<_, {integer}>`
-help: you might have meant to return this value
- |
-LL | return Err(42);
- | ++++++ +
-
-error: aborting due to 3 previous errors
-
-For more information about this error, try `rustc --explain E0308`.