https://metacpan.org/module/SHAY/perl-5.17.3/pod/perldelta.pod#given-now-aliases-the-global-_
}
}
+Note that this behavior was changed once again in L<Perl5 version 18
+|https://metacpan.org/module/perldelta#given-now-aliases-the-global-_>.
+However, since the entirety of lexical C<$_> is now L<considired experimental
+|https://metacpan.org/module/perldelta#Lexical-_-is-now-experimental>, it
+is unclear whether the new version 18 behavior is final.
+
=back
=head1 SEE ALSO
is( $error, "blah\n", "error caught" );
{
- local $TODO = "perhaps a workaround can be found";
+ local $TODO = "perhaps a workaround can be found"
+ if $] < 5.017003;
is( $topic, $error, 'error is also in $_' );
}