* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / inherit / using4.C
blob4b7a28f0f463a3e1cd02041b1502e1b870965619
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 6 Jun 2005 <nathan@codesourcery.com>
4 // PR 20613:uninformative diagnostic
5 // Origin:  Wolfgang Bangerth <bangerth@dealii.org>
7 struct B { 
8   void f();
9 }; 
11 struct D : B { 
12   using B::f; // { dg-message "previous declaration" }
13   using B::f; // { dg-error "redeclaration" }
14 };