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