Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
polymorphization
/
issue-74614.rs
blob: 8b0c00b13551909f14a7733677532d54b4458942 [
file
] [
log
] [
blame
]
// compile-flags:-Zpolymorphize=on
// build-pass
fn
test
<
T
>()
{
std
::
mem
::
size_of
::<
T
>();
}
pub
fn
foo
<
T
>(
_
:
T
)
->
&
'
static
fn
()
{
&(
test
::<
T
>
as
fn
())
}
fn
outer
<
T
>()
{
foo
(||
());
}
fn
main
()
{
outer
::<
u8
>();
}