summary refs log tree commit diff
path: root/src/test/ui/generic/generic-extern.rs
blob: e52a88592ff96d94ab8a18a0774d0b89d07a012a (plain)
1
2
3
4
5
6
7
extern {
    fn foo<T>(); //~ ERROR foreign items may not have type parameters
}

fn main() {
    foo::<i32>();
}