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
8template <unsigned D> class TPL;
9
10template <typename T> struct X {
11  template <template <typename> class V>
12  V<TPL<V<int>::d> > operator () ();
13};
14
15void Foo (X<int> x) {}
16