remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / pr57184.c
1 /* PR debug/57184 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -g" } */
4
5 struct S {};
6 void bar (struct S *const);
7 static struct S *const c = &(struct S) {};
8
9 void
10 foo (void)
11 {
12   bar (c);
13 }