Commit d8f81372f1

mlugg <mlugg@mlugg.co.uk>
2024-07-16 20:38:34
Sema: fix bad merge
1 parent 5093a5c
Changed files (1)
src/Sema.zig
@@ -30007,7 +30007,7 @@ const InMemoryCoercionResult = union(enum) {
             },
             .comptime_int_not_coercible => |int| {
                 try sema.errNote(src, msg, "type '{}' cannot represent value '{}'", .{
-                    int.wanted.fmt(pt), int.actual.fmtValue(pt, sema),
+                    int.wanted.fmt(pt), int.actual.fmtValue(pt),
                 });
                 break;
             },