in reply to Inheritence of a Constructor that uses a file-scoped lexical?

Minor correction: The Sub.pm does have the following line that I failed to mention. *blush*.
our @isa = qw(Some::Package);

Replies are listed 'Best First'.
Re: Re: Inheritence of a Constructor that uses a file-scoped lexical?
by converter (Priest) on Oct 29, 2002 at 13:56 UTC

    Make that:

    our @ISA = qw(Some::Package);

    ...and it might work the way you expect it to. Perl is case-sensitive. :)

      ...must learn to check for typos before pressing submit... In the actual code, @ISA is correctly capitalized. Maybe next time, I'll just cut and paste the actual code and let the distracting extra cruft be damned.