blob: 26af43852ca4fdf8529d676c337c46fc37f15261 [file] [log] [blame]
struct s {
int f;
};
static int foo(struct s *s)
{
if (s->f)
return 0;
else if (!s->f)
return 4;
return -1;
}
/*
* check-name: dup-cond0
* check-command: test-linearize -Wno-decl $file
*
* check-output-ignore
* check-output-contains: select
*/