Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
coercion
/
coerce-reborrow-multi-arg-fail.rs
blob: 0a58f0897aae5fdd97389f38bb826ab385c7a165 [
file
] [
log
] [
blame
]
fn
test
<
T
>(
_a
:
T
,
_b
:
T
)
{}
fn
main
()
{
test
(&
mut
7
,
&
7
);
//~^ ERROR mismatched types
}