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