summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs/struct-base-wrong-type.rs
blob: b64c6b499369f1e08e183087f7dbc63c069d3b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Check that `base` in `Fru { field: expr, ..base }` must have right type.

struct Foo { a: isize, b: isize }
struct Bar { x: isize }

static bar: Bar = Bar { x: 5 };
static foo: Foo = Foo { a: 2, ..bar }; //~  ERROR mismatched types
static foo_i: Foo = Foo { a: 2, ..4 }; //~  ERROR mismatched types

fn main() {
    let b = Bar { x: 5 };
    let f = Foo { a: 2, ..b };        //~ ERROR mismatched types
    let f__isize = Foo { a: 2, ..4 }; //~ ERROR mismatched types
}