in reply to •Re^5: Auto-generated constructors not finding correct SUPER?
in thread Auto-generated constructors not finding correct SUPER?

dragonchild figured it out, this code works.

eval "package $pkg; *new = sub { (shift)->SUPER::new( \%\$fields ); }"
It avoids the warnings, and all the tests pass. Thanks for the help.

-stvn