aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorske <contact@ske.land>2026-01-10 10:46:53 -0300
committerske <contact@ske.land>2026-01-10 10:46:53 -0300
commit3e31055ca7dbfa42998f7f6b42c45d15b967622e (patch)
treece6882f0e3482d8e75e850654c7817b7a1ee9997 /src
parentf9d9166ff11f3b6eeedb4355dfa930d69c40be8a (diff)
Fix regression in #6118
Diffstat (limited to 'src')
-rw-r--r--src/check_expr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp
index 2b2ae09cc..98185b0d3 100644
--- a/src/check_expr.cpp
+++ b/src/check_expr.cpp
@@ -3528,7 +3528,7 @@ gb_internal bool check_cast_internal(CheckerContext *c, Operand *x, Type *type)
if (core_type(bt)->kind == Type_Basic) {
return check_representable_as_constant(c, x->value, type, &x->value) ||
(is_type_pointer(type) && check_is_castable_to(c, x, type));
- } else if (!are_types_identical(elem, bt) && elem->kind == Type_Basic) {
+ } else if (!are_types_identical(elem, bt) && elem->kind == Type_Basic && x->type->kind == Type_Basic) {
return check_representable_as_constant(c, x->value, elem, &x->value) ||
(is_type_pointer(elem) && check_is_castable_to(c, x, elem));
} else if (check_is_castable_to(c, x, type)) {