Sign in
fuchsia
/
third_party
/
rust
/
4717bdfc1343953b770887460d5822c87e434d97
/
.
/
tests
/
ui
/
unnamed_argument_mode.rs
blob: ba6f84c4ddea5c3268223d568c9366cc3f1a1de4 [
file
] [
log
] [
blame
]
//@ run-pass
//@ pretty-expanded FIXME #23616
fn
good
(
_a
:
&
isize
)
{
}
// unnamed argument &isize is now parse x: &isize
fn
called
<
F
>(
_f
:
F
)
where F
:
FnOnce
(&
isize
)
{
}
pub
fn
main
()
{
called
(
good
);
}