about summary refs log tree commit diff
path: root/src/test/ui/match/match-struct.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/match/match-struct.stderr')
-rw-r--r--src/test/ui/match/match-struct.stderr11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/match/match-struct.stderr b/src/test/ui/match/match-struct.stderr
deleted file mode 100644
index a475bd5e581..00000000000
--- a/src/test/ui/match/match-struct.stderr
+++ /dev/null
@@ -1,11 +0,0 @@
-error[E0308]: mismatched types
-  --> $DIR/match-struct.rs:6:9
-   |
-LL |     match (S { a: 1 }) {
-   |           ------------ this expression has type `S`
-LL |         E::C(_) => (),
-   |         ^^^^^^^ expected struct `S`, found enum `E`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.