(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.martin/
crash1.C
// { dg-do assemble  }
int i = 4;
struct S{
  char c[i];      // { dg-error "" } size not constant
  int h;
  int foo(){
    return h;
  }
};

int main()
{
  S x;
  int i = x.foo();
}