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