struct A
{
  static const int l = 10;
  char b[l];
};


int main()
{
  A a;

  return 0;
}
