* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / duperr1.C
blob78f66a9ae6fd45d41c6ea69579f3475dcdebb409
1 // PR c++/29048
3 class A { int i; }; // { dg-bogus "is private.*is private" }
4 // { dg-message "private" "" { target *-*-* } .-1 }
5 class B:public A { B() { A::i=0; } }; // { dg-error "within this context" }