2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / memtmpl1.C
blob260dbf8dc0926718cdfa21e6f102268f5e4f3c02
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 30 Jul 2003 <nathan@codesourcery.com>
6 // PR 11347. ICE in tsubst
8 template <class T> struct T1 {
9   enum {N};
12 template<class T> struct T2 {
13   template <class S, bool Z = T1<S>::N + 1> struct B {};
14   struct C {};
17 T2<int> t;
19 T2<int>::B<int> s;