20 lines
181 B
Rust
20 lines
181 B
Rust
|
fn main() {
|
||
|
|
||
|
let x = {
|
||
|
f: 0,
|
||
|
g: 0,
|
||
|
};
|
||
|
|
||
|
let y = {
|
||
|
f: 1,
|
||
|
g: 1,
|
||
|
with x
|
||
|
};
|
||
|
|
||
|
let z = {
|
||
|
f: 1,
|
||
|
with x
|
||
|
};
|
||
|
|
||
|
}
|