mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
283 B
Rust
16 lines
283 B
Rust
// run-pass
|
|
// Tests that matching rvalues with drops does not crash.
|
|
|
|
|
|
|
|
pub fn main() {
|
|
match vec![1, 2, 3] {
|
|
x => {
|
|
assert_eq!(x.len(), 3);
|
|
assert_eq!(x[0], 1);
|
|
assert_eq!(x[1], 2);
|
|
assert_eq!(x[2], 3);
|
|
}
|
|
}
|
|
}
|