about summary refs log tree commit diff
path: root/src/test/compile-fail/rec-extend.rs
blob: 06593df79df3f3e6b970921d48618a08b70a1649 (plain)
1
2
3
4
5
6
7
8
// error-pattern:expected `int` but found `bool`

fn main() {

    let a = {foo: 0i};

    let b = {foo: true,.. a};
}