blob: 3ccb57ccb539f91a7a06abe7beb0c1ba90d6b0e2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
|