1 /* PR c++/4652 */
2 /* { dg-do compile } */
3 /* Another conflict between namespace IDs and other things. */
4 
5 namespace A { }
6 
7 class B {
8 
9    struct {
10       int x;
11    } A;
12 
13 };
14 
main()15 int main() {
16    B b;
17    return 0;
18 }
19