Sign in
android
/
toolchain
/
rustc
/
54272acac043c1dedfb7db7420545b31ec1ac51f
/
.
/
src
/
test
/
ui
/
half-open-range-patterns
/
slice_pattern_syntax_problem2.rs
blob: 6e7df30949127062c8fb177a8cfd7bef301fd730 [
file
] [
log
] [
blame
]
// run-pass
fn
main
()
{
let
xs
=
[
13
,
1
,
5
,
2
,
3
,
1
,
21
,
8
];
if
let
[
3.
.=
14
,
..]
=
xs
{
/* this variant must pass for now, unfortunately.
* This test is included here to help inform a future plan for these.
*/
};
}