authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2024-07-16 19:38:34+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2024-07-16 19:44:41+01:00
logd8f81372f148ad2ee5aab12cc7ea55562764b3e7
tree63ddfb7586184af763a6626d10b6b27d2865fb38
parent5093a5cd193ed3cd4107f0fcdb0ed1ab9dda30f5
signaturelock-open Commit is signed but in an unrecognized format.

Sema: fix bad merge


1 files changed, 1 insertions(+), 1 deletions(-)

src/Sema.zig+1-1
......@@ -30007,7 +30007,7 @@ const InMemoryCoercionResult = union(enum) {
3000730007 },
3000830008 .comptime_int_not_coercible => |int| {
3000930009 try sema.errNote(src, msg, "type '{}' cannot represent value '{}'", .{
30010 int.wanted.fmt(pt), int.actual.fmtValue(pt, sema),
30010 int.wanted.fmt(pt), int.actual.fmtValue(pt),
3001130011 });
3001230012 break;
3001330013 },