2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / crash46.C
blobac16b40e5b867b2e5a45ac7ff05d50cc61d783ee
1 // { dg-do assemble  }
2 // Origin: Leon Bottou <leonb@research.att.com>
4 class AA { protected:
5   template <class T> struct BB { T x; BB(const T &x) : x(x) { }; };
6   template <class T> struct CC : public BB<T> { CC(const T &x) : BB<T>(x) { };
7 };
8 };