// Build don't link: // GROUPS passed templates template void foo(T t); template <> void foo(int) {}; // ERROR - previously defined here. template <> void foo(int) {} // ERROR - duplicate specialization.