=item *
+"Constant is not a FOO reference"
+
+Compile-time checking of constant dereferencing (e.g.,
+C<< my_constant->() >>) has been removed, since it was not taking
+overloading into account. [perl #69456] [perl #122607]
+
+=item *
+
The warning "Ambiguous use of -foo resolved as -&foo()" has been removed.
There is actually no ambiguity here, and this impedes the use of negated
constants; e.g., C<-Inf>.
=item *
-Compile-time checking of constant dereferencing (e.g.,
-C<< my_constant->() >>) has been removed, since it was not taking
-overloading into account. [perl #69456] [perl #122607]
-
-=item *
-
Constant dereferencing now works correctly for typeglob constants.
Previously the glob was stringified and its name looked up. Now the glob
itself is used. [perl #69456]