view gcc/testsuite/gcc.dg/enum-incomplete-3.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 1830386684a0
line wrap: on
line source

/* PR c/70851 */
/* { dg-do compile } */
/* { dg-options "" } */

enum E e; /* { dg-error "storage size" } */

void bar (int [e]); /* { dg-error "size of unnamed array has incomplete type" } */
void bar2 (int [][e]); /* { dg-error "size of unnamed array has incomplete type" } */

void
foo (void)
{
  int a1[e]; /* { dg-error "size of array .a1. has incomplete type" } */
  int a2[e][3]; /* { dg-error "size of array .a2. has incomplete type" } */

  struct S
  {
    int a3[e]; /* { dg-error "size of array .a3. has incomplete type" } */
  };
}