3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

failing test case: SMT2 parse string constants

This commit is contained in:
Murphy Berzish 2015-09-02 18:55:45 -04:00
parent b30d4f757d
commit 1f96e19211

View file

@ -98,6 +98,12 @@ void tst_smt2print_parse() {
test_parseprint(spec5);
// Test strings
char const* spec6 =
"(assert (= \"abc\" \"abc\"))";
test_parseprint(spec6);
// Test ?
}