This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Localising hash slices with UTF-8 encoded keys was also buggy.
[perl5.git] / t / op / pos.t
CommitLineData
02c45c47
GS
1#!./perl
2
ee8ba353
SP
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl';
7}
8
9plan tests => 6;
02c45c47
GS
10
11$x='banana';
12$x=~/.a/g;
ee8ba353 13is(pos($x), 2);
02c45c47
GS
14
15$x=~/.z/gc;
ee8ba353 16is(pos($x), 2);
02c45c47
GS
17
18sub f { my $p=$_[0]; return $p }
19
20$x=~/.a/g;
ee8ba353 21is(f(pos($x)), 4);
02c45c47 22
084916e3
JH
23# Is pos() set inside //g? (bug id 19990615.008)
24$x = "test string?"; $x =~ s/\w/pos($x)/eg;
ee8ba353
SP
25is($x, "0123 5678910?");
26
27TODO: {
28 $x = "123 56"; $x =~ / /g;
29 is(pos($x), 4);
30 { local $x }
31 local $TODO = "RT #1716: search position reset after 'local' save/restore";
32 is(pos($x), 4);
33}