blob: e663de1cd722b3a450bbe570907c071dc0bd5e77 [file] [log] [blame]
/* PR91038 */
/* { dg-do compile } */
/* { dg-options "" } */
void bar(void)
{
({ int N = 2; int (*x)[9][N] = 0; x; })[1];
({ int N = 2; int (*x)[9][N] = 0; x; })[0]; // should not ice
}