Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0059.rs
blob: a04cc0cb2b980329c022808a83247afb1efc6e17 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
unboxed_closures
)]
fn
foo
<
F
:
Fn
<
i32
>>(
f
:
F
)
->
F
::
Output
{
f
(
3
)
}
//~ ERROR E0059
//~^ ERROR `i32` is not a tuple
//~| ERROR cannot use call notation
fn
main
()
{
}