Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
polymorphization
/
promoted-function-3.rs
blob: bbd991e36ccaf2d3a0b0f61625a07d2dd11fc9db [
file
] [
log
] [
blame
]
// run-pass
// compile-flags: -Zpolymorphize=on -Zmir-opt-level=4
fn
caller
<
T
,
U
>()
->
&
'
static
usize
{
callee
::<
U
>()
}
fn
callee
<
T
>()
->
&
'
static
usize
{
&
std
::
mem
::
size_of
::<
T
>()
}
fn
main
()
{
assert_eq
!(
caller
::<(),
()>(),
&
0
);
}