aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/project/type-mismatch.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/project/type-mismatch.stderr')
-rw-r--r--tests/ui/project/type-mismatch.stderr23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/ui/project/type-mismatch.stderr b/tests/ui/project/type-mismatch.stderr
deleted file mode 100644
index 4199c17..0000000
--- a/tests/ui/project/type-mismatch.stderr
+++ /dev/null
@@ -1,23 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/type-mismatch.rs:36:9
- |
-24 | match &mut foo {
- | -------- this expression has type `&mut type_mismatch::__EnumProjection<'_, {integer}, {integer}, _, _>`
-...
-36 | None => {} //~ ERROR mismatched types
- | ^^^^ expected enum `type_mismatch::__EnumProjection`, found enum `std::option::Option`
- |
- = note: expected enum `type_mismatch::__EnumProjection<'_, {integer}, {integer}, _, _>`
- found enum `std::option::Option<_>`
-
-error[E0308]: mismatched types
- --> $DIR/type-mismatch.rs:68:9
- |
-56 | match &mut foo {
- | -------- this expression has type `&mut type_mismatch_span_issue::__EnumProjection<'_, {integer}, {integer}, _, _>`
-...
-68 | None => {} //~ ERROR mismatched types
- | ^^^^ expected enum `type_mismatch_span_issue::__EnumProjection`, found enum `std::option::Option`
- |
- = note: expected enum `type_mismatch_span_issue::__EnumProjection<'_, {integer}, {integer}, _, _>`
- found enum `std::option::Option<_>`