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

template <class A>
class B {
public:
  A a;
  B() { a = 2; }
};
static B<int> bi;