From 6bd640c7a0866d7069ed68140afd894c6613e3da Mon Sep 17 00:00:00 2001 From: mlugg Date: Tue, 16 Jul 2024 19:48:05 +0100 Subject: [PATCH] Sema: typo --- src/Sema.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sema.zig b/src/Sema.zig index 7f716a169d..2b43b75132 100644 --- a/src/Sema.zig +++ b/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), + int.wanted.fmt(pt), int.actual.fmtValueSema(pt, sema), }); break; },