Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
error-codes
/
E0061.rs
blob: b6fae6c63d77a10cfe49a11793bc453b384d196b [
file
] [
log
] [
blame
]
fn
f
(
a
:
u16
,
b
:
&
str
)
{}
fn
f2
(
a
:
u16
)
{}
fn
main
()
{
f
(
0
);
//~^ ERROR E0061
f2
();
//~^ ERROR E0061
}