blob: 7d1616255b21560b42d774cabdc9674e4250d2cd [file] [log] [blame]
// Build don't run:
// GROUPS passed templates
template <class T>
int foo(T t) { return 1; }
template <>
int foo(int i) { return 0; }
int main()
{
(int (*)(int)) &foo<int>;
}