aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/ttp1.C
blob: 7b323028ec508e297bdfd708d38f3aef607c1b5e (plain)
1
2
3
4
5
6
7
8
9
// Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
// { dg-do compile }

template <template <typename T> class A >
class B : virtual A<void>
{
	typedef int INT;
	INT i;
};