// { dg-do run } extern "C" void abort(void); template void f(int i) { } template void f(int i) { abort(); } int main() { f<0>(3); }