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) {
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),
30010 int.wanted.fmt(pt), int.actual.fmtValueSema(pt, sema),
3001130011 });
3001230012 break;
3001330013 },