aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/template/qualttp12.C
blob: ebd4b645c89fd9b958d131c07407d2906b8f483a (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
// Copyright (C) 2001 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
// { dg-do link }

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

template <template <class> class TT> void f()
{
	TT<int> y;
}

template <class T> struct C
{
	void g() { f<T::template B>(); }
};

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