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


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

Thanks. I understand compile time and how to cram code into it. The question isn't "how do I fix this problem" but "why isn't this a problem under my modern perl build?" Any idea?
rjbs

Replies are listed 'Best First'.
Re^3: Class::Std, 5.6.1, and AUTOLOAD
by ikegami (Patriarch) on Sep 22, 2005 at 17:22 UTC
    No idea. Maybe if I had something minimal I could run and debug.

      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