Allow parsing for [^]T{} to improve error messages

This commit is contained in:
gingerBill
2021-10-23 19:22:08 +01:00
parent 2a50f9c8d4
commit 06f4762144

View File

@@ -2526,6 +2526,9 @@ bool is_literal_type(Ast *node) {
case Ast_BitSetType:
case Ast_CallExpr:
return true;
case Ast_MultiPointerType:
// For better error messages
return true;
}
return false;
}