http://www.perlmonks.org?node_id=11160589

vincentaxhe has asked for the wisdom of the Perl Monks concerning the following question:

test.pl as below;
my $a = "abc"; my @b = $a =~ /.(?!a)/g; #comment this line to see the output my $c = 'test'; $c =~ s///; print $c
run 'perl test.pl'; line 2 run or not, affect the rest. comment it and see for yourself.I use perl 5.38 in manjaro.

ADD:

It's beyong all expectations.