1 2 3 4 5 6 7
extern "C" { fn foo<T>(); //~ ERROR foreign items may not have type parameters } fn main() { foo::<i32>(); }