blob: 842ed090bcc62d34317eeec69809ab968592d582 [file] [log] [blame]
// Build don't link:
namespace N {
template <class T> struct S;
};
void f()
{
N::S(); // ERROR - invalid use of template
}