summaryrefslogtreecommitdiffstats
path: root/pattern/not-constant.cmm
blob: 32d28aa0b2d8cf9a7f1ffec233470411f67ffd30 (plain) (blame)
1
2
3
4
5
6
7
8
9
int func(void) {
    return 4;
}

float gv = 4 - func();

int main(void) {
    return 0;
}