mirror of
https://github.com/ziglang/zig.git
synced 2024-12-17 08:40:19 +00:00
10 lines
128 B
Zig
10 lines
128 B
Zig
|
extern fn exit() noreturn;
|
||
|
|
||
|
test "foo" {
|
||
|
comptime {
|
||
|
exit();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// test_error=comptime call of extern function
|