3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 18 Sep 2003 <nathan@codesourcery.com>
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) {}