mirror of
https://github.com/ziglang/zig.git
synced 2026-01-05 21:13:24 +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);
|
|
}
|