view gcc/testsuite/g++.dg/ext/vla18.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// PR c++/84767
// { dg-do compile }
// { dg-options "" }

int v[1][10];

struct A
{
  A (int);
};

A::A (int i)
{
  typedef int T[1][i];
  T *x = (T *) v;
  (*x)[0][0] = 0;
}

A a = 10;