zig/doc/langref/test_comptime_call_extern_function.zig

10 lines
128 B
Zig

extern fn exit() noreturn;
test "foo" {
comptime {
exit();
}
}
// test_error=comptime call of extern function