blob: 51ce2536ea9c4c06393d11332d8e5b2a1cf18151 [file] [log] [blame]
struct s { _Complex unsigned short x; };
struct s gs = { 100 + 200i };
struct s __attribute__((noinline)) foo (void) { return gs; }
int main ()
{
if (foo ().x != gs.x)
abort ();
exit (0);
}