Files
zig/test/cases/compile_errors/implicit_dependency_on_libc.zig
2022-12-14 14:08:21 +02:00

11 lines
208 B
Zig

extern "c" fn exit(u8) void;
export fn entry() void {
exit(0);
}
// error
// backend=stage2
// target=native-linux
//
// :1:8: error: dependency on libc must be explicitly specified in the build command