Subject: | Error doesn't show up in $@ |
In this code, nothing shows up in $@ in the say message.
use v5.10.1;
use TryCatch;
try {
die "This died"
}
catch {
say "Caught [$@]";
}
This is also mentioned in https://rt.cpan.org/Ticket/Display.html?id=49072