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