| ... | @@ -3792,8 +3792,8 @@ pub fn analyzeFnBody(mod: *Module, decl: *Decl, func: *Fn) SemaError!Air { | ... | @@ -3792,8 +3792,8 @@ pub fn analyzeFnBody(mod: *Module, decl: *Decl, func: *Fn) SemaError!Air { |
| 3792 | log.debug("set {s} to in_progress", .{decl.name}); | 3792 | log.debug("set {s} to in_progress", .{decl.name}); |
| 3793 | | 3793 | |
| 3794 | _ = sema.analyzeBody(&inner_block, fn_info.body) catch |err| switch (err) { | 3794 | _ = sema.analyzeBody(&inner_block, fn_info.body) catch |err| switch (err) { |
| 3795 | error.NeededSourceLocation => unreachable, | 3795 | error.NeededSourceLocation => @panic("zig compiler bug: NeededSourceLocation"), |
| 3796 | error.GenericPoison => unreachable, | 3796 | error.GenericPoison => @panic("zig compiler bug: GenericPoison"), |
| 3797 | else => |e| return e, | 3797 | else => |e| return e, |
| 3798 | }; | 3798 | }; |
| 3799 | | 3799 | |