OSDN Git Service

Fix PR 17408 and PR 17409.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / crash11.C
1 // { dg-do assemble  }
2 // Bug: g++ crashes on this input.
3
4 struct A {
5   const char *p;
6 };
7 const char foo[] = "bar";
8 const A a = { foo };
9 extern const A* ap = &a;