aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/t03.C
blob: 29f687ae1bcf89cc972bad7cee68f028023a88aa (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<char> b_char;

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