summaryrefslogtreecommitdiff
path: root/tests/params.c
blob: eb91b832ce7542bdb8c4040038222519bcec91b6 (plain)
1
2
3
4
5
6
7
8
9
int square(int x) {
    return x * x;
}
int main() {
    int x;
    x = square(9);// 81
    e:goto e;
    return x;
}