summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/match-type-err-first-arm.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/match/match-type-err-first-arm.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/match/match-type-err-first-arm.stderr')
-rw-r--r--src/test/ui/match/match-type-err-first-arm.stderr65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/test/ui/match/match-type-err-first-arm.stderr b/src/test/ui/match/match-type-err-first-arm.stderr
deleted file mode 100644
index 1cfe7ce1e..000000000
--- a/src/test/ui/match/match-type-err-first-arm.stderr
+++ /dev/null
@@ -1,65 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/match-type-err-first-arm.rs:8:15
- |
-LL | fn test_func1(n: i32) -> i32 {
- | --- expected `i32` because of return type
-LL | match n {
-LL | 12 => 'b',
- | ^^^ expected `i32`, found `char`
- |
-help: you can cast a `char` to an `i32`, since a `char` always occupies 4 bytes
- |
-LL | 12 => 'b' as i32,
- | ++++++
-
-error[E0308]: `match` arms have incompatible types
- --> $DIR/match-type-err-first-arm.rs:18:14
- |
-LL | let x = match n {
- | _____________-
-LL | | 12 => 'b',
- | | --- this is found to be of type `char`
-LL | | _ => 42,
- | | ^^ expected `char`, found integer
-LL | |
-LL | |
-LL | | };
- | |_____- `match` arms have incompatible types
-
-error[E0308]: `match` arms have incompatible types
- --> $DIR/match-type-err-first-arm.rs:34:14
- |
-LL | let x = match n {
- | _____________-
-LL | | 1 => 'b',
-LL | | 2 => 'b',
-LL | | 3 => 'b',
-... |
-LL | | 6 => 'b',
- | | --- this and all prior arms are found to be of type `char`
-LL | |
-LL | | _ => 42,
- | | ^^ expected `char`, found integer
-LL | |
-LL | |
-LL | | };
- | |_____- `match` arms have incompatible types
-
-error[E0308]: `match` arms have incompatible types
- --> $DIR/match-type-err-first-arm.rs:46:17
- |
-LL | / match Some(0u32) {
-LL | | Some(x) => {
-LL | | x
- | | - this is found to be of type `u32`
-LL | | },
-LL | | None => {}
- | | ^^ expected `u32`, found `()`
-LL | |
-LL | |
-LL | | };
- | |_____- `match` arms have incompatible types
-
-error: aborting due to 4 previous errors
-
-For more information about this error, try `rustc --explain E0308`.