zig/doc/langref/test_comptime_call_extern_function.zig

10 lines
128 B
Zig
Raw Normal View History

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