Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
generics
/
generic-alias-unique.rs
blob: 571907ea411a0084a0897f732c42f957a5c75311 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
id
<
T
:
Send
>(
t
:
T
)
->
T
{
return
t
;
}
pub
fn
main
()
{
let
expected
:
Box
<
_
>
=
Box
::
new
(
100
);
let
actual
=
id
::<
Box
<
isize
>>(
expected
.
clone
());
println
!(
"{}"
,
*
actual
);
assert_eq
!(*
expected
,
*
actual
);
}