=head1 NAME
perldeprecation - list Perl deprecations
=head1 DESCRIPTION
The purpose of this document is to document what has been deprecated
in Perl, and by which version the deprecated feature will disappear,
or, for already removed features, when it was removed.
This document will try to discuss what alternatives for the deprecated
features are available.
The deprecated features will be grouped by the version of Perl in
which they will be removed.
=head2 Perl 5.34
There are no deprecations or fatalizations scheduled for Perl 5.34.
=head2 Perl 5.32
=head3 Constants from lexical variables potentially modified elsewhere
You wrote something like
my $var;
$sub = sub () { $var };
but $var is referenced elsewhere and could be modified after the C
expression is evaluated. Either it is explicitly modified elsewhere
(C<$var = 3>) or it is passed to a subroutine or to an operator like
C or C