3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
add parse check for identifiers used for datatype declarations.
This commit is contained in:
Nikolaj Bjorner 2023-09-18 12:52:26 -07:00
parent 858477f3e3
commit 31c91e1674

View file

@ -963,6 +963,7 @@ namespace smt2 {
unsigned line = m_scanner.get_line();
unsigned pos = m_scanner.get_pos();
symbol dt_name = curr_id();
check_identifier("unexpected token used as datatype name");
next();
m_dt_name2idx.reset();