Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unboxed-closures
/
non-tupled-arg-mismatch.rs
blob: 2278285bf8f156189ee2c3b0b14ad6404b604535 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
unboxed_closures
)]
fn
a
<
F
:
Fn
<
usize
>>(
f
:
F
)
{}
//~^ ERROR type parameter to bare `Fn` trait must be a tuple
fn
main
()
{
a
(|
_
:
usize
|
{});
//~ ERROR: mismatched types
}