blob: bd4283ec875e61f3dca5119ac6843c3ad7432942 [file] [log] [blame]
/* PR 11527 */
/* { dg-do compile } */
/* { dg-options "-std=gnu89" } */
typedef struct smrdd_memory_blocks_s
{
int blocks;
int block[];
} smrdd_memory_blocks_t;
const smrdd_memory_blocks_t smrdd_memory_blocks =
{
3,
{
[5] = 5,
[1] = 2,
}
};