blob: 28ab26f64f002807e27ee60fdf3517626ec6ef68 [file] [log] [blame]
int foo();
int bar();
int main()
{
if (foo() != bar()) {
return 1;
}
return 0;
}