Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
binding
/
match-vec-rvalue.rs
blob: fead2254c75ce82da90d1384c1b40fe93515991d [
file
] [
log
] [
blame
]
// 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
);
}
}
}