mirror of
https://github.com/ziglang/zig.git
synced 2025-12-17 19:53:06 +00:00
8 lines
113 B
Zig
8 lines
113 B
Zig
fn b(comptime T: type) ?*const fn () error{}!T {
|
|
return null;
|
|
}
|
|
|
|
export fn entry() void {
|
|
_ = b(void);
|
|
}
|