summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-33504.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/issues/issue-33504.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-33504.stderr b/src/test/ui/issues/issue-33504.stderr
new file mode 100644
index 000000000..d9e7c3b16
--- /dev/null
+++ b/src/test/ui/issues/issue-33504.stderr
@@ -0,0 +1,16 @@
+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`.