* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / scoped2.C
blob22c159835dd34a540c3ef9396dcc362fd6e74cec
1 // { dg-do compile }
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 16 Sep 2002 <nathan@codesourcery.com>
6 // Seg faulted.
8 struct Base 
12 struct Derived : Base
14   void Foo ()
15   {
16     Base::Baz ();  // { dg-error "is not a member" }
17       
18   }