Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_comptime_call_extern_function.zig
pretty
plain
permalink
blame
history
•
9 lines
•
128 B
1
extern fn exit() noreturn;
2
3
test "foo" {
4
comptime {
5
exit();
6
}
7
}
8
9
// test_error=comptime call of extern function