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