OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / namespace4.C
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
15 int main() {
16    B b;
17    return 0;
18 }