(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
vlm2.C
// { dg-options "" }

int n;

struct Y
{
  void f () {
    typedef int X[n];
    struct Z {
      X x; // { dg-error "variably modified" }
    };
  }
};