summaryrefslogtreecommitdiffstats
path: root/src/test/ui/structs/struct-base-wrong-type.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/structs/struct-base-wrong-type.stderr')
-rw-r--r--src/test/ui/structs/struct-base-wrong-type.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/structs/struct-base-wrong-type.stderr b/src/test/ui/structs/struct-base-wrong-type.stderr
new file mode 100644
index 000000000..b039ce2cc
--- /dev/null
+++ b/src/test/ui/structs/struct-base-wrong-type.stderr
@@ -0,0 +1,27 @@
+error[E0308]: mismatched types
+ --> $DIR/struct-base-wrong-type.rs:7:33
+ |
+LL | static foo: Foo = Foo { a: 2, ..bar };
+ | ^^^ expected struct `Foo`, found struct `Bar`
+
+error[E0308]: mismatched types
+ --> $DIR/struct-base-wrong-type.rs:8:35
+ |
+LL | static foo_i: Foo = Foo { a: 2, ..4 };
+ | ^ expected struct `Foo`, found integer
+
+error[E0308]: mismatched types
+ --> $DIR/struct-base-wrong-type.rs:12:27
+ |
+LL | let f = Foo { a: 2, ..b };
+ | ^ expected struct `Foo`, found struct `Bar`
+
+error[E0308]: mismatched types
+ --> $DIR/struct-base-wrong-type.rs:13:34
+ |
+LL | let f__isize = Foo { a: 2, ..4 };
+ | ^ expected struct `Foo`, found integer
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0308`.