aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/to2.C
blob: 936729c6b181833037e4f26e15cc29e6233cc7dc (plain)
1
2
3
4
5
6
7
// Build don't link: 

template <class A> class B { public: A a; };
static B<int> b_int;
static B<int> b_int2;

int foo () { return b_int.a + b_int2.a; }