blob: be5ab1d450ed02038c451f7f40f6a1d9a4197607 [file] [log] [blame]
// { dg-do compile }
// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 14 Aug 2003 <nathan@codesourcery.com>
// required from did not indicate the nested class
template<class T> struct X
{
T m; // { dg-error "void" "void" }
// { dg-error "incomplete type" "incomplete" { target *-*-* } 10 }
};
template<class T >
struct Derived
{
class Nested : public X<T> // { dg-message "required" "" }
{
};
Nested m; // { dg-message "required" "" }
void Foo ();
};
void Foo (Derived<void> &x)
{
x.Foo (); // { dg-message "required" "" }
}