aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/for2.c
blob: ed43a08d50844553878bdf356d8c27dde12ad991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Issue #211 */

#include <stdio.h>

int press = 100;
int valve = 0;

int main (void) {
  for (int press = 0; press < 3; press++) {
    valve++;
  }
  printf ("Value of 'press' should be 100, is: %d\n", press);
  return valve - 3;
}