7 lines
138 B
Rust
7 lines
138 B
Rust
fn main() {
|
|
let x = ~{mut a: ~10, b: ~20};
|
|
match x {
|
|
~{a, b} => { assert *a == 10; (*x).a = ~30; assert *a == 30; }
|
|
}
|
|
}
|