http://www.perlmonks.org?node_id=494225


in reply to Re^3: Class::Std, 5.6.1, and AUTOLOAD
in thread Class::Std, 5.6.1, and AUTOLOAD

You could run the 00.load.t in Class-Std-0.0.4, heh.

I tried using this as a test case:

package CheckCheck; use strict; use warnings; *INSTALLED = sub { print "EVERYTHING IS OK\n"; }; sub AUTOLOAD { warn INSTALLED(); } sub GO_GO_GO { INSTALLED(); } CHECK { GO_GO_GO() } 1;

...but then perl -Mcheck -e1 is fine on both 5.6.1 and 5.8.7; no clue.

rjbs