aboutsummaryrefslogtreecommitdiff
path: root/test/cases/translate_c/continue_from_while.c
blob: 2e2237f752f4198da86aa5e9105895edd83f7541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void foo() {
    for (;;) {
        continue;
    }
}

// translate-c
// c_frontend=clang
//
// pub export fn foo() void {
//     while (true) {
//         continue;
//     }
// }