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) {...@@ -30007,7 +30007,7 @@ const InMemoryCoercionResult = union(enum) {
30007 },30007 },
30008 .comptime_int_not_coercible => |int| {30008 .comptime_int_not_coercible => |int| {
30009 try sema.errNote(src, msg, "type '{}' cannot represent value '{}'", .{30009 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),
30011 });30011 });
30012 break;30012 break;
30013 },30013 },