Test vertical whitespace combined with /x in \p{}.
authorJarkko Hietaniemi <jhi@iki.fi>
Sat, 20 Oct 2001 00:51:07 +0000 (00:51 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sat, 20 Oct 2001 00:51:07 +0000 (00:51 +0000)
p4raw-id: //depot/perl@12519

t/op/pat.t

index 6617921..9937e36 100755 (executable)
@@ -2235,7 +2235,10 @@ print "# some Unicode properties\n";
     print "not " unless "a" =~ /\p{LowercaseLetter}/;
     print "ok 745\n";
 
-    print "not " if     "A" =~ /\p{LowercaseLetter}/;
+    print "not " if     "A" =~ /\p{
+                                       Lowercase
+                                       Letter
+                                 }/x;
     print "ok 746\n";
 }