# New Ticket Created by Paul Cochrane
# Please include the string: [perl #46689]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=46689 >
In src/pmc/exception.pmc:is_equal() there is the todo item (embedded in its
code):
INTVAL is_equal(PMC *value) {
if (value->vtable->base_type == enum_class_Exception ||
VTABLE_isa(INTERP, value, const_string(INTERP, "Exception"))) {
/* TODO check parents */
return 1;
}
return 0;
}
This check needs to be implemented.