blob: 806e0f5c99c7be76f2bf8438b21e9bba7548397c [file] [log] [blame]
// { dg-do compile }
// by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
// Copyright (C) 1999, 2002 Free Software Foundation
template<class T>
class X {
class Y : public T
{ // { dg-error "base type .* fails to be" "" }
};
Y y; // { dg-error "instantiated" "" }
};
int main() {
X<int> x; // { dg-error "instantiated" "" }
}