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