summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/crash3.C
blob: 842ed090bcc62d34317eeec69809ab968592d582 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:

namespace N {
  template <class T> struct S;
};

void f()
{
  N::S(); // ERROR - invalid use of template
}