* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / scoped4.C
blob2d9d90a17685b900dd41b50ff3b4fefabbfaf8cb
1 /* PR c++/754 */
2 /* { dg-do compile } */
4 namespace foo
6     namespace bar
7     {
8         enum x {foo
9         };
10         enum {ubit0       = 0x0001};
11       // Used to get a parse error before "::" token.
12         int i=foo::bar::ubit0;
13     }