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