mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
216 B
Rust
17 lines
216 B
Rust
|
// 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>();
|
||
|
}
|