blob: 2c87f52ee04ea177623323b9ea67435169517c69 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/struct-base-wrong-type.rs:20:33
|
LL | static foo: Foo = Foo { a: 2, ..bar }; //~ ERROR mismatched types
| ^^^ expected struct `Foo`, found struct `Bar`
|
= note: expected type `Foo`
found type `Bar`
error[E0308]: mismatched types
--> $DIR/struct-base-wrong-type.rs:24:35
|
LL | static foo_i: Foo = Foo { a: 2, ..4 }; //~ ERROR mismatched types
| ^ expected struct `Foo`, found integral variable
|
= note: expected type `Foo`
found type `{integer}`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.