| author | |
| committer | |
| log | 9cad44770a15d189cddb749bc1b2fca9e24b858f |
| tree | e253efafe5eadaa1a890f068cc5dd3964a35245f |
| parent | 272e31227c2636afbf286d5154808cab930cec66 |
The behavior of this test is not affected by an extra level of
indirection.1 files changed, 2 insertions(+), 2 deletions(-)
test/standalone/issue_13030/main.zig+2-2| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | fn b(comptime T: type) ?@import("std").meta.FnPtr(fn () error{}!T) { | |
| 1 | fn b(comptime T: type) ?*const fn () error{}!T { | |
| 2 | 2 | return null; |
| 3 | 3 | } |
| 4 | 4 | |
| 5 | export fn c() void { | |
| 5 | export fn entry() void { | |
| 6 | 6 | _ = b(void); |
| 7 | 7 | } |