Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
pattern
/
slice-patterns-nested.rs
blob: 32b01c5572d6c4d1d3988bf6d5dd63112dd21d16 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
unused_variables
)]
struct
Zeroes
;
struct
Foo
<
T
>(
T
);
impl
Into
<[
usize
;
3
]>
for
Zeroes
{
fn
into
(
self
)
->
[
usize
;
3
]
{
[
0
;
3
]
}
}
fn
main
()
{
let
Foo
([
a
,
b
,
c
])
=
Foo
(
Zeroes
.
into
());
}