2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / ctors3.C
blob523089e73f78941873eaf61f45042b7b9e1f68b8
1 // { dg-do assemble  }
2 // GROUPS passed constructors
3 // ctor file
4 // Message-Id: <m0oxRi1-0002fPC@nesmith.pactitle.com>
5 // From: genehi@nesmith.pactitle.com (Gene Hightower)
6 // Subject: Apparent bug in g++ 2.5.2
7 // Date: Wed, 10 Nov 93 18:24 PST
9 class One {
10   public:
11     One() {}
14 template<class T> class Two : public One {
17 class Three {
20 class Four  {
21     Two<Three>  x[1];
24 class Five {
25     Four        y;
27   public:
28     Five() {}