aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/UnitTests/2003-05-12-MinIntProblem.c
blob: 37740fe79fc2bece244f41822bb666744d92b1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

void foo(int X) {
  if (X+1 < 0)
    printf("success\n");
}
int main() {
 foo(-2147483648);
 return 0;
}