Skip Menu |

This queue is for tickets about the ConditionSystem CPAN distribution.

Report information
The Basics
Id: 82488
Status: new
Priority: 0/
Queue: ConditionSystem

People
Owner: Nobody in particular
Requestors: MAUKE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.02
Fixed in: (no value)



Subject: ConditionSystem breaks 'die' globally
Take this program: use ConditionSystem; die "I'm out"; print "not ok\n"; Running it produces the following output: not ok This is a major problem. Loading ConditionSystem anywhere turns 'die' into a no-op for everyone else because ConditionSystem overrides CORE::GLOBAL::die with a function that does nothing, thereby breaking exceptions everywhere.