summaryrefslogtreecommitdiffstats
path: root/tests/codegen-units/polymorphization/poly-foreign.rs
blob: 9da082daf114a99f457c03c0186f5941db0fb1dd (plain)
1
2
3
4
5
6
7
8
9
10
11
// aux-build:poly-dep.rs
// compile-flags: --crate-type=lib -Zprint-mono-items=eager -Zpolymorphize=on

extern crate poly_dep;

pub static FN1: fn() = poly_dep::foo::<i32>;
pub static FN2: fn() = poly_dep::foo::<u32>;

//~ MONO_ITEM static FN1
//~ MONO_ITEM static FN2
//~ MONO_ITEM fn poly_dep::foo::<T>