blob: 0a670f3c99078354736d428f2b9b4b23bb96928c [file] [log] [blame]
/* PR c/48742 */
void baz (int);
int
foo (void)
{
return 1 / 0 > 0;
}
void
bar (void)
{
baz (1 <= 2 % (3 >> 1 > 5 / 6 == 3));
}