mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
239 B
Rust
16 lines
239 B
Rust
//@ run-pass
|
|
//@ compile-flags:-Zpolymorphize=on
|
|
|
|
fn fop<T>() {}
|
|
|
|
fn bar<T>() -> &'static fn() {
|
|
&(fop::<T> as fn())
|
|
}
|
|
pub const FN: &'static fn() = &(fop::<i32> as fn());
|
|
|
|
fn main() {
|
|
bar::<u32>();
|
|
bar::<i32>();
|
|
(FN)();
|
|
}
|