aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/t11.C
blob: 81373498df868ddacfa2886d916b796ac02f13e9 (plain)
1
2
3
4
5
6
7
8
9
// Build don't link: 

template <class A>
class B {
public:
  A a;
  B() { x = 2; }	// ERROR - no x
};
static B<int> bi;