mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-17 19:14:16 +00:00
30862a64c2
This is required by the check-fast target because each test is slurped up into a submodule.
13 lines
266 B
Rust
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);
|
|
}
|
|
}
|
|
}
|