# New Ticket Created by Jacob Gelbman # Please include the string: [perl #81286] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81286 > Under Perl 5.12.1, the following test does not succeed. use Test::More; $_ = "abc"; ok /\G^/gc; ok /\G^/gc; # not ok Since you can't be on the "other side" of an assertion, I would expect subsequent regexes to work as the one before them. Also, if between the regexes, I put the following, things work as expected: pos($_) = pos($_); Thanks, JakeThread Previous | Thread Next