aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/template18.C
blob: 5c6479cbffc2b689c5ab7aa082cf8f2e3ce62c2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link: 
// GROUPS passed templates
template<class T> class X;
typedef X<int> IX;

template<class T>
class X {
public:
  T x;
};

struct A {
  IX c;
};