do not allow strings containing null characters to be inlined (#2848)

This commit is contained in:
Mark Thom
2025-04-09 23:03:28 -07:00
committed by Mark Thom
parent 22080f3787
commit 98dae9aecc
4 changed files with 4 additions and 5 deletions

View File

@@ -761,8 +761,7 @@ test_171 :- writeq_term_to_chars("a", C),
test_229 :- test_syntax_error("\"\\z.\"", syntax_error(missing_quote)).
test_300 :- '$debug_hook',
writeq_term_to_chars("\0\", C),
test_300 :- writeq_term_to_chars("\0\", C),
C == "['\\x0\\']".
test_172 :- X is 10.0** -323,