Wed Apr 10 12:35:20 2013david [...] justatheory.com - Ticket created
Subject:
$@ Not Properly Localized on Perls before 5.14.
Date:
Wed, 10 Apr 2013 09:35:10 -0700
To:
bug-Test-Exception [...] rt.cpan.org
From:
"David E. Wheeler" <david [...] justatheory.com>
This test fails on 5.10 and 5.12:
use Test::More tests => 1;
use Test::Exception;
throws_ok { local $@ = 'Yo dawg'; die 'WTF!' } qr/WTF/;
Works fine on 5.14. I suspect there is a `local $@` missing somewhere.
David