2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp91.C
blob802d31de94eabb3fbfc2ec17b0f51ab5519a37cd
1 // { dg-do assemble { xfail *-*-* } }
2 // regression test -
4 // simplified from bug report by Leon Bottou <leonb@research.att.com>
5 // by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
6 // Copyright (C) 1999 Free Software Foundation
8 struct A {
9         template <class T>
10         struct B {
11                 T x;
12         };
13         template <class T>
14         struct C : B<T> {
15                 C() {}
16         };