aboutsummaryrefslogtreecommitdiff
path: root/src/Sema.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Sema.zig')
-rw-r--r--src/Sema.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Sema.zig b/src/Sema.zig
index dd5d09c57d..7f716a169d 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, sema),
+ int.wanted.fmt(pt), int.actual.fmtValue(pt),
});
break;
},