Rebase.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp91.C
blob18b52a433b101eee3dce7dd035e313a6e53bc34a
1 // { dg-do assemble }
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         };