In perl.git, the branch blead has been updated
<http://perl5.git.perl.org/perl.git/commitdiff/a3164817e46808339a605914ac61f15117615fe5?hp=7f7f7d08ba8aa7c624e75745003d602eca4a2caa>
- Log -----------------------------------------------------------------
No new revisions added by this update
-----------------------------------------------------------------------
Summary of changes:
t/lib/croak/toke | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/t/lib/croak/toke b/t/lib/croak/toke
index 73b02ca..d35eab6 100644
--- a/t/lib/croak/toke
+++ b/t/lib/croak/toke
@@ -330,3 +330,23 @@ Version control conflict marker at - line 1, near "<<<<<<<"
Version control conflict marker at - line 3, near "======="
Version control conflict marker at - line 5, near ">>>>>>>"
Execution of - aborted due to compilation errors.
+########
+# NAME (Might be a runaway multi-line...) with Latin-1 delimiters in utf8
+BEGIN { binmode STDERR, ':utf8' }
+use utf8;
+q«
+« time
+EXPECT
+syntax error at - line 4, near "« time"
+ (Might be a runaway multi-line «« string starting on line 3)
+Execution of - aborted due to compilation errors.
+########
+# NAME (Might be a runaway multi-line...) with non-Latin-1 delimiters
+BEGIN { binmode STDERR, ':utf8' }
+use utf8;
+q Ï¡
+Ï¡ time
+EXPECT
+syntax error at - line 4, near "Ï¡ time"
+ (Might be a runaway multi-line ϡϡ string starting on line 3)
+Execution of - aborted due to compilation errors.
--
Perl5 Master Repository