diff options
| author | gingerBill <bill@gingerbill.org> | 2023-09-26 15:15:31 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-09-26 15:15:31 +0100 |
| commit | fc93ea7aa370d25aab61dab43e885f50978dff50 (patch) | |
| tree | 19e12095f7745fa9d5389156695b2f55a410ec48 | |
| parent | 4c22982732d7dfc2e48f03e03de7b8f6b0fab60c (diff) | |
Fix #2820
| -rw-r--r-- | src/checker.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index 18d403d80..929927ef9 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -1999,6 +1999,9 @@ gb_internal void add_type_info_type_internal(CheckerContext *c, Type *t) { break; + case Type_Generic: + break; + default: GB_PANIC("Unhandled type: %*.s %d", LIT(type_strings[bt->kind]), bt->kind); break; |