blob: a99a49bae4bab6bf05065f96330ebbad569a8add [file] [log] [blame]
// Build don't link:
// GROUPS passed templates
template <class T>
T foo(T* t);
template <>
int foo<char>(char c); // ERROR - does not match declaration.
template <>
int bar<char>(); // ERROR - no template bar.