aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/t08.C
blob: 8f8f37b731690539270053e753b79e2344f7ffe8 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble  }

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