| ... | ... | @@ -1134,6 +1134,7 @@ static AstNode *trans_type(Context *c, const Type *ty, const SourceLocation &sou |
| 1134 | 1134 | case Type::ObjCTypeParam: |
| 1135 | 1135 | case Type::DeducedTemplateSpecialization: |
| 1136 | 1136 | case Type::DependentAddressSpace: |
| 1137 | case Type::DependentVector: |
| 1137 | 1138 | emit_warning(c, source_loc, "unsupported type: '%s'", ty->getTypeClassName()); |
| 1138 | 1139 | return nullptr; |
| 1139 | 1140 | } |
| ... | ... | @@ -2573,6 +2574,7 @@ static AstNode *trans_bool_expr(Context *c, ResultUsed result_used, TransScope * |
| 2573 | 2574 | case Type::ObjCTypeParam: |
| 2574 | 2575 | case Type::DeducedTemplateSpecialization: |
| 2575 | 2576 | case Type::DependentAddressSpace: |
| 2577 | case Type::DependentVector: |
| 2576 | 2578 | return res; |
| 2577 | 2579 | } |
| 2578 | 2580 | zig_unreachable(); |