Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
crashes
/
137467-3.rs
blob: cb81a9a912e7cc45ce2ab327227b2c6d6a50432d [
file
] [
log
] [
blame
]
//@ known-bug: #137467
//@ edition: 2021
fn
meow
(
x
:
(
u32
,
u32
,
u32
))
{
let
f
=
||
{
let
((
0
,
a
,
_
)
|
(
_
,
_
,
a
))
=
x
;
};
}