# New Ticket Created by Lloyd Fournier # Please include the string: [perl #125733] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=125733 >
https://github.com/rakudo/rakudo/blob/nom/src/core/Exception.pm "Illegal post-declaration of dynamic variable '$.symbol';\n" ~ "earlier access must be written as CALLER::<$.symbol>\n" ~ "if that's what you meant" This message was useful but it took me while to figure out that what I wanted was CALLERS::<$*dynamic> rather than CALLER. CALLER will only work if there is a my $*dynamic made in the caller but this is not necessarily the case. Should probably change exception to reflect that.
