mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
14 lines
180 B
C
14 lines
180 B
C
void foo() {
|
|
for (;;) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// translate-c
|
|
// c_frontend=clang
|
|
//
|
|
// pub export fn foo() void {
|
|
// while (true) {
|
|
// continue;
|
|
// }
|
|
// }
|