blob: e0c9f619c2ed6bd0aa9cfc83dc3a417dd412dd87 [file] [log] [blame]
static int
f (int x)
{
static union
{
int i;
};
int j = i;
i = x;
return j;
}