blob: a56c213d0a9a8b835a88378a69d274fd268749f0 [file] [log] [blame]
// Build don't run:
// GROUPS passed templates
// Special g++ Options: -ansi -pedantic-errors -w
template <class T>
int foo(T t);
template <>
int foo(int i) { return 0; }
int main()
{
return foo<int>(3.0);
}