aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr53196-2.c
blob: efb6a82c6bb0aee5b605caec215c52fa745b8e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* PR c/53196 */
/* { dg-do compile } */
/* { dg-options "-std=c99 -pedantic-errors" } */

extern int printf (const char *, ...);
struct foo { int i; };

int
main ()
{
  struct foo f = (struct foo_typo) { };	/* { dg-error "invalid use of undefined type" } */
  printf ("%d\n", f.i);
  return 0;
}

/* { dg-error "ISO C forbids empty initializer braces" "" { target *-*-* } 11 } */