* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / namespace-alias-1.C
blob220d5f9decd12ae44a80b35a6299583775ba7c76
1 // PR c++/26155
3 namespace N
5   namespace M = N;  // { dg-message "previous declaration" }
6   namespace M {}    // { dg-error "conflicts with a previous declaration" }
9 namespace A
11   namespace B 
12   {
13     namespace C
14     {
15     }
16   }
18   namespace D = B::C;
19   namespace D  // { dg-error "not allowed" }
20   {
21   }