summaryrefslogtreecommitdiff
path: root/lib/utf8.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utf8.t')
-rw-r--r--lib/utf8.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/utf8.t b/lib/utf8.t
index 8072c8722a..6728238fbf 100644
--- a/lib/utf8.t
+++ b/lib/utf8.t
@@ -37,7 +37,7 @@ no utf8; # Ironic, no?
#
#
-plan tests => 98;
+plan tests => 99;
{
# bug id 20001009.001
@@ -323,3 +323,8 @@ END
is("@i", "60 62 58 50 52 48 70 72 68", "utf8 heredoc index and rindex");
}
+{
+ use utf8;
+ eval qq{is(q \xc3\xbc test \xc3\xbc, qq\xc2\xb7 test \xc2\xb7,
+ "utf8 quote delimiters [perl #16823]");};
+}