rust/src/test/run-pass/issue-2463.rs

20 lines
181 B
Rust
Raw Normal View History

fn main() {
let x = {
f: 0,
g: 0,
};
let y = {
f: 1,
g: 1,
with x
};
let z = {
f: 1,
with x
};
}