aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/crash1.C
blob: 5a002bd7bf95694bd6694ae6832da5f7ab699c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Build don't link:

template <class T> 
struct S1 {};

namespace N {
}

struct S2 
{
  typedef N::S1<int> S2_T; // ERROR - parse error
};