mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
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;
|
|
// }
|
|
// }
|