Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
structs-enums
/
issue-50731.rs
blob: c00ef6d5f74c96d59e5b41fc29a971c34258276e [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
enum
Void
{}
fn
foo
(
_
:
Result
<(
Void
,
u32
),
(
Void
,
String
)>)
{}
fn
main
()
{
let
_
:
fn
(
_
)
=
foo
;
}