aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/if/if2.c
blob: 2a6d55079f389c3cb2a5db3044bfa6a20f22e1e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
int toto(int x) {
  if (2*x+1 >= 3) {
    if (2*x+1 >= 3) {
      return 3;
    } else {
      return 2;
    }
  } else {
    return 1;
  }
}