blob: 11a7bbd6076245a482d7905dc532aec3ad53ead2 [file] [log] [blame]
// PR c++/33460
struct A
{
struct
{ // { dg-error "anonymous struct cannot have function members" }
struct { static int i; }; // { dg-error "prohibits anonymous structs|non-static data members" }
void foo() { i; }
}; // { dg-error "prohibits anonymous structs" }
};