aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/qualttp16.C
blob: 1fd0e1f3535fa3e4346291779e0c360cff3ece8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (C) 2001 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
// { dg-do run }

extern "C" void abort();

struct A
{
	template <class T> class B {};
};

template <template <class> class TT, class T> struct X
{
	TT<int> y;
	T z;
	int f() { return 0; }
};

template <class T> struct X<T::template B, T>
{
	typename T::template B<int> y;
	T z;
	int f() { return 1; }
};

template <class T> struct C
{
	X<T::template B, A> x;
};

int main()
{
	C<A> c;
	X<A::B, A> x1;
	X<A::B, int> x2;
	if (x1.f() != 1)
		abort();
	if (x2.f() != 0)
		abort();
}