authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2024-07-16 19:48:05+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2024-07-16 19:48:05+01:00
log6bd640c7a0866d7069ed68140afd894c6613e3da
tree11bf705f8c7ecfd5cbb1988a0cfb8e3f8f54227a
parent21cde7ad90a033b775fdf0a5c3477fa289c51ef5
signaturelock-open Commit is signed but in an unrecognized format.

Sema: typo


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),30010 int.wanted.fmt(pt), int.actual.fmtValueSema(pt, sema),
30011 });30011 });
30012 break;30012 break;
30013 },30013 },