1*b39c5158Smillert#!/usr/bin/perl -w 2*b39c5158Smillert 3*b39c5158Smillertuse strict; 4*b39c5158Smillert 5*b39c5158Smillertuse Test::More tests => 1; 6*b39c5158Smillert 7*b39c5158Smillert# Here we emulate a bug with base.pm not finding the Exporter version 8*b39c5158Smillert# for some reason. 9*b39c5158Smillertuse lib qw(t/lib); 10*b39c5158Smillertuse base qw(Dummy); 11*b39c5158Smillert 12*b39c5158Smillertis( $Dummy::VERSION, 5.562, "base.pm doesn't confuse the version" ); 13