blob: 368510513a84ff317d7abb6711f9c2895a4098b4 [file] [log] [blame]
// { dg-do link }
// GROUPS passed templates
template <class T>
void foo(T t);
template <>
void foo(int i) {}
int main()
{
(void (*)(int)) &foo<int>;
}