view gcc/testsuite/g++.old-deja/g++.pt/ttp14.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do run  }
template<class T> class D
{
	T	a;
	public:
		int f();
};

template<class T> int D<T>::f()
{
	return sizeof(T);
}

template<class E,template<class> class DD = D> class C
{
		DD<E> d;
	public:
		int f();
};

template<class E,template<class> class DD> int C<E,DD>::f()
{
	DD<E> d2;
	return d2.f();
}

int main()
{
	C<int> c;
	c.f();
}