Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
coercion
/
coerce-reborrow-multi-arg-fail.rs
blob: 48be2d3146b811f0777829e94035ae170051004a [
file
] [
log
] [
blame
] [
edit
]
fn
test
<
T
>(
_a
:
T
,
_b
:
T
)
{}
fn
main
()
{
test
(&
mut
7
,
&
7
);
//~^ mismatched types
}