summary refs log tree commit diff
path: root/src/test/run-pass/unique-destructure.rs
blob: 5c1a0c473bf66e3e9b50e1395094956eaae114bf (plain)
1
2
3
4
fn main() {
    let ~{a, b} = ~{a: 100, b: 200};
    assert a + b == 300;
}