Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / namespace4.C
blob2bee8dda85860fd783a1a15205cd828bb5e390ee
1 /* PR c++/4652 */
2 /* { dg-do compile } */
3 /* Another conflict between namespace IDs and other things. */
5 namespace A { }
7 class B {
9    struct {
10       int x;
11    } A;
15 int main() {
16    B b;
17    return 0;