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

template <class A> class B {
  A a;
 public:
  B ();
  ~B ();
};
B<int> b_int;
B<int> *bp = &b_int;