blob: 46c9d07b5da1b02ba5de246bd51347cf361135de [file] [log] [blame]
// Build don't link:
// GROUPS passed gb scope
struct C {
struct D {
int x;
void foo ();
};
const int Ok = 0; // ERROR - initialization forbidden
};
void C::D::foo ()
{
x = Ok;
}