// Build don't run: // GROUPS passed templates template int foo(T t); template <> int foo(int i) { return 0; } int main() { return foo(3.0); }