* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / defarg9.C
blob8496cfb26c1040e9738afd83b4fd9f5fbccea317
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 6 Jun 2005 <nathan@codesourcery.com>
4 // PR 21903:Reject legal with default arg confusion
5 // Origin:  Wolfgang Bangerth <bangerth@dealii.org>
8 struct O { 
9   template<typename T> struct B { 
10     void set (T, bool=true); 
11   }; 
12   
13   struct D : public B<int> {}; 
14 }; 
16 void x () 
17
18   O::D d; 
19   d.set(1);