* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / defarg15.C
blobb93af4c9200dd8005d29025af51b441a620300fe
1 // PR c++/44991
3 class bar {
4     void foo(bool a = 3 < 2, bool b = true) {}
5 };