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 
Foo(X<int> x)15 void Foo (X<int> x) {}
16