blob: 319d3fd5312f817045e77cee5a7f74e8269e4442 [file] [log] [blame]
/* PR debug/57184 */
/* { dg-do compile } */
/* { dg-options "-O2 -g" } */
struct S {};
void bar (struct S *const);
static struct S *const c = &(struct S) {};
void
foo (void)
{
bar (c);
}