Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
polymorphization
/
issue-74636.rs
blob: 4c532f451e373c3646e9d03ca63377a480cd0d0f [
file
]
// compile-flags:-Zpolymorphize=on
// build-pass
use
std
::
any
::
TypeId
;
pub
fn
foo
<
T
:
'
static
>(
_
:
T
)
->
TypeId
{
TypeId
::
of
::<
T
>()
}
fn
outer
<
T
:
'
static
>()
{
foo
(||
());
}
fn
main
()
{
outer
::<
u8
>();
}