aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/nttp1.C
blob: 36b743848c4e83f6f3b7ce8c5050e58f13c61b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Test for nested template template parameter feature

template <template<template <class> class> class TTT> struct C
{
	int f();
};

template <template<template <class> class> class TTT> int C<TTT>::f()
{
	return 0;
}

template <template <class> class TT> struct D
{
};

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