##
package Bar ;
use base 'Foo' ;
$VERSION = '0.0.3';
use warnings ;
use strict ; # Does not report missing 'our' before $VERSION
####
use lib '.' ;
use strict ;
use warnings ;
use Bar ;
print "version Foo = $Foo::VERSION\n" ;
print "version Bar = $Bar::VERSION\n" ;