aboutsummaryrefslogtreecommitdiff
path: root/testbed/custom_subexp.c
blob: bce5bdbe46f54007108cf28c7564cbffb3274363 (plain) (blame)
1
2
3
4
5
6
7
8
9
int N = 0;
void f() { N = 2; }
int main() {
    int a, b;
    a = N + 1;
    f();
    b = N + 1;
    printf("%d\n", b);
}