summaryrefslogtreecommitdiffhomepage
path: root/tests/custom/99_bugs/31_vallist_8bit_shortstrings
blob: 9d02f422a86b19aa31e018f1a3cd9d0769d42140 (plain)
1
2
3
4
5
6
7
8
9
10
11
Due to using signed byte values when writing/reading short strings
to/from pointer addresses, 8 bit characters where incorrectly clamped
to `-1` (`255`).

-- Testcase --
{{ ord("ö", 1) != -1 }}
-- End --

-- Expect stdout --
true
-- End --