root/usr/src/tools/smatch/src/validation/bug-expand-union1.c
union u {
        int i;
        float f;
};

static int foo(void)
{
        union u u = { .f = 0.123 };
        return u.i;
}

/*
 * check-name: bug-expand-union
 * check description: must not infer the value from the float
 * check-command: test-linearize $file
 * check-known-to-fail
 *
 * check-output-ignore
 * check-output-contains: load\\.
 */