mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-29 03:57:08 +03:00
de9c889a0e
fixes #22601
15 lines
180 B
C
15 lines
180 B
C
void foo() {
|
|
for (;;) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// translate-c
|
|
// c_frontend=clang
|
|
//
|
|
// pub export fn foo() void {
|
|
// while (true) {
|
|
// continue;
|
|
// }
|
|
// }
|