OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / memtmpl2.C
1 // { dg-do compile }
2
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 18 Sep 2003 <nathan@codesourcery.com>
5
6 // PR c++/12332. ICE
7
8 template <unsigned D> class TPL;
9
10 template <typename T> struct X {
11   template <template <typename> class V>
12   V<TPL<V<int>::d> > operator () ();
13 };
14
15 void Foo (X<int> x) {}