summaryrefslogtreecommitdiff
path: root/test/loop.c
blob: a17444f933a9a7c3e737a69e6fe1d8d319ef80e3 (plain)
1
2
3
4
5
6
7
int main (int argc, char** argv) {
    int i;
    for (i = 0; i; i = i + 1) {
        i = i / 2;
    }
    return i;
}