blob: f2887fca09c85dd7607d467fc09b26e79382e308 [file] [log] [blame]
struct S
{
char f1;
int f2[2];
};
struct S object = {'X', 8, 9};
main ()
{
if (object.f1 != 'X' || object.f2[0] != 8 || object.f2[1] != 9)
abort ();
exit (0);
}