summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs/struct-base-wrong-type.stderr
blob: b039ce2cc9209fc81f5e967dd762c032c5ec57c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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`.