Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
arg-style-mismatch.rs
blob: 58f126f7f4e593a15eedd279c9b017ceb2f0f3f8 [
file
]
// error-pattern: mismatched types
fn
f
(&&
_x
:
int
)
{}
fn
g
(
_a
:
fn
(+
v
:
int
))
{}
fn
main
()
{
g
(
f
);
}