aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/qualttp3.C
blob: 929fa628ca73e92bf13dd3423dc19de4ac27411a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2001 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
// { dg-do compile }

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

template <template <class> class TT> struct X
{
	TT<int> y;
};

template <class T> struct C
{
	X<T::template B> x; // { dg-error "type" "" }
};

int main()
{
	C<A> c; // { dg-error "instantiated" }
}