summary refs log tree commit diff
path: root/src/test/run-pass/match-vec-rvalue.rs
blob: 5f68b0e9a695355359f32d856b623d436c61d673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Tests that matching rvalues with drops does not crash.

fn main() {
    match ~[1, 2, 3] {
        x => {
            assert_eq!(x.len(), 3);
            assert_eq!(x[0], 1);
            assert_eq!(x[1], 2);
            assert_eq!(x[2], 3);
        }
    }
}