summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-33504.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-33504.stderr')
-rw-r--r--src/test/ui/issues/issue-33504.stderr16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/issues/issue-33504.stderr b/src/test/ui/issues/issue-33504.stderr
deleted file mode 100644
index d9e7c3b16..000000000
--- a/src/test/ui/issues/issue-33504.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/issue-33504.rs:7:13
- |
-LL | struct Test;
- | ----------- unit struct defined here
-...
-LL | let Test = 1;
- | ^^^^ - this expression has type `{integer}`
- | |
- | expected integer, found struct `Test`
- | `Test` is interpreted as a unit struct, not a new binding
- | help: introduce a new binding instead: `other_test`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.