summary refs log tree commit diff
path: root/src/test/run-pass/issue-2463.rs
blob: f6d600e48b64d05e4b07cc57c67c7cef6a7387df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
fn main() {

    let x = {
        f: 0,
        g: 0,
    };

    let y = {
        f: 1,
        g: 1,
        with x
    };

    let z = {
        f: 1,
        with x
    };

}