in reply to Testing that functions are imported

I see no reason to mess with globs :)
C:\>more 2 sub FORWARD_DECLARATION; BEGIN { print 'glob ', defined *::FORWARD_DECLARATION{CODE}; print 'defined & ', defined &FORWARD_DECLARATION; print 'exists & ', exists &FORWARD_DECLARATION; } sub FORWARD_DECLARATION { 5 } print 'glob ', defined *::FORWARD_DECLARATION{CODE}; print 'defined & ', defined &FORWARD_DECLARATION; C:\>perl -l 2 glob 1 defined & exists & 1 glob 1 defined & 1 C:\>

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.