summaryrefslogtreecommitdiff
path: root/tests/ui/suggestions/match-needing-semi.stderr
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-05 09:13:28 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-11 09:32:08 +0000
commitcf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch)
tree40a88d9a46aaf3e8870676eb2538378b75a263eb /tests/ui/suggestions/match-needing-semi.stderr
parentca855e6e42787ecd062d81d53336fe6788ef51a9 (diff)
Move /src/test to /tests
Diffstat (limited to 'tests/ui/suggestions/match-needing-semi.stderr')
-rw-r--r--tests/ui/suggestions/match-needing-semi.stderr37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/ui/suggestions/match-needing-semi.stderr b/tests/ui/suggestions/match-needing-semi.stderr
new file mode 100644
index 00000000000..b5f01d7038c
--- /dev/null
+++ b/tests/ui/suggestions/match-needing-semi.stderr
@@ -0,0 +1,37 @@
+error[E0308]: mismatched types
+ --> $DIR/match-needing-semi.rs:7:13
+ |
+LL | / match 3 {
+LL | | 4 => 1,
+LL | | 3 => {
+LL | | foo()
+ | | ^^^^^ expected `()`, found `i32`
+LL | | }
+LL | | _ => 2
+LL | | }
+ | |_____- expected this to be `()`
+ |
+help: consider using a semicolon here
+ |
+LL | foo();
+ | +
+help: consider using a semicolon here
+ |
+LL | };
+ | +
+
+error[E0308]: mismatched types
+ --> $DIR/match-needing-semi.rs:11:5
+ |
+LL | / match 3 {
+LL | | 4 => 1,
+LL | | 3 => 2,
+LL | | _ => 2
+LL | | }
+ | | ^- help: consider using a semicolon here
+ | |_____|
+ | expected `()`, found integer
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0308`.