Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
error-codes
/
E0057.rs
blob: 83f941f65b9884ffaec7fe2af4e545bda0ae23f9 [
file
] [
log
] [
blame
]
fn
main
()
{
let
f
=
|
x
|
x
*
3
;
let
a
=
f
();
//~ ERROR E0057
let
b
=
f
(
4
);
let
c
=
f
(
2
,
3
);
//~ ERROR E0057
}