blob: 81358d9ccca234b507f816747c04ac099ff939dd [file] [log] [blame]
extern "C" void abort();
template <class T>
void f(T t1, T t2);
template <>
void f(int i, int j)
{
abort();
}
void f(short s, char c)
{
}
int main()
{
f(3, 'c');
}