Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-bogus-nested-arrays.C
blob5291181024737653b4dea7a910e250d11cbf0d15
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
4 int foo () {
5   int buffer[10][10];
6   int* pi = &buffer[0][0];  /* { dg-bogus "same element type" } */
7   *pi = 10;
8   return buffer[0][0];