in reply to Re: Redefined import method and EXPORT not working
in thread Redefined import method and EXPORT not working

That seems like an over-complicated way of doing:

use Exporter (); sub import { print "Imported\n"; goto \&Exporter::import; }

Replies are listed 'Best First'.
Re^3: Redefined import method and EXPORT not working
by Anonymous Monk on Jan 10, 2017 at 16:01 UTC
    Great!