mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-26 16:23:55 +00:00
Fix #4022
This commit is contained in:
@@ -1478,7 +1478,7 @@ gb_internal void check_type_switch_stmt(CheckerContext *ctx, Ast *node, u32 mod_
|
||||
case_type = nullptr;
|
||||
}
|
||||
if (case_type == nullptr) {
|
||||
case_type = x.type;
|
||||
case_type = type_deref(x.type);
|
||||
}
|
||||
if (switch_kind == TypeSwitch_Any) {
|
||||
if (!is_type_untyped(case_type)) {
|
||||
|
||||
Reference in New Issue
Block a user