blob: 52f43e81a4f5cbe074ee83973c8f6ae77f96ad3e [file] [log] [blame]
struct a
{ double a, b, c; };
struct b
{
struct a arr[6];
};
static struct b a_b =
{
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
};