Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
119786.rs
blob: ca79664d8b74c739fe3a8b270da00b86676cfb45 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #119786
//@ edition:2021
fn
enum_upvar
()
{
type
T
=
impl
Copy
;
let
foo
:
T
=
Some
((
1u32
,
2u32
));
let
x
=
move
||
{
match
foo
{
None
=>
(),
Some
(
yield
)
=>
(),
}
};
}
pub
fn
main
()
{}