rust/src/test/run-pass/match-vec-rvalue.rs
Alex Crichton 30862a64c2 Fix run-pass tests to have 'pub fn main'
This is required by the check-fast target because each test is slurped up into a
submodule.
2013-09-25 00:43:37 -07:00

13 lines
266 B
Rust

// Tests that matching rvalues with drops does not crash.
pub 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);
}
}
}