blob: 1570bf11e2ea84c25929aecf1c5b2ed40aad4b2e [file] [log] [blame]
// PR 12486
struct A { int ma; };
struct B { };
void foo()
{
B *b;
b->A::ma=0; // { dg-error "" }
}