in reply to Inheritance doesn't

You need a

use Foo::Bar;
line in your Foo::Bar::Baz package.

Replies are listed 'Best First'.
Re^2: Inheritance doesn't
by tospo (Hermit) on Oct 16, 2009 at 12:30 UTC
    or
    use base Foo::Bar
    which basically is 'use' and '@ISA' in one go
      or
      use parent 'Foo::Bar';
      (parent is a new in the base at 5.10.1)
Re^2: Inheritance doesn't
by FloydATC (Deacon) on Oct 16, 2009 at 13:05 UTC
    *smacks head* Thanks.

    -- Time flies when you don't know what you're doing