blob: be97e9f7b6c3bedc9aa9564a52f0ddea31e4d886 [file] [log] [blame]
// Build don't link:
// crash test - XFAIL *-*-*
// regression test -
// simplified from bug report by Leon Bottou <leonb@research.att.com>
// by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
// Copyright (C) 1999 Free Software Foundation
struct A {
template <class T>
struct B {
T x;
};
template <class T>
struct C : B<T> {
C() {}
};
};