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