| author | |
| committer | |
| log | 7dcbabef512403382f4647e2c7cc0c900ecae913 |
| tree | df272b5b059ec57b511ccb858421904b975b779d |
| parent | a03fee465b6463518da60d7df8417c7bfd29152b |
| signature |
The assert was copied from a few lines above without updating the target variable.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/zig/Parse.zig+1-1| ... | ... | @@ -3818,7 +3818,7 @@ fn parseIf(p: *Parse, comptime bodyParseFn: fn (p: *Parse) Error!Node.Index) !No |
| 3818 | 3818 | }); |
| 3819 | 3819 | _ = try p.parsePayload(); |
| 3820 | 3820 | const else_expr = try bodyParseFn(p); |
| 3821 | assert(then_expr != 0); | |
| 3821 | assert(else_expr != 0); | |
| 3822 | 3822 | |
| 3823 | 3823 | return p.addNode(.{ |
| 3824 | 3824 | .tag = .@"if", |