Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / inherit / error1.C
blob1570bf11e2ea84c25929aecf1c5b2ed40aad4b2e
1 // PR 12486
3 struct A { int ma; }; 
4 struct B { }; 
5  
6 void foo() 
7
8   B *b; 
9   b->A::ma=0; // { dg-error "" }
10