summaryrefslogtreecommitdiffstats
path: root/tests/012/parse.tl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/012/parse.tl')
-rw-r--r--tests/012/parse.tl6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/012/parse.tl b/tests/012/parse.tl
index 8e3e7afc..d28f9057 100644
--- a/tests/012/parse.tl
+++ b/tests/012/parse.tl
@@ -3,5 +3,11 @@
(test (read `"@(str-buf #b'EDB081')"`)
"\xDCED\xDCB0\xDC81")
+(test (read `"@(str-buf #b'F3FF')"`)
+ "\xDCF3\xDCFF")
+
(test (regex-parse (str-buf #b'EDB081'))
(compound "\xDCED\xDCB0\xDC81"))
+
+(test (regex-parse (str-buf #b'F3FF'))
+ (compound #\xDCF3 #\xDCFF))