Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
polymorphization
/
issue-74614.rs
blob: 3ed030b5778cea78d2fd2488ce58e17b79cb4a49 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
>();
}