This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Perl_hv_placeholders_get() actually takes a const HV *hv.
[perl5.git] / lib / base / t / version.t
CommitLineData
9e998a43
RGS
1#!/usr/bin/perl -w
2
3BEGIN {
4 if( $ENV{PERL_CORE} ) {
5 chdir 't' if -d 't';
5633ac3d 6 @INC = qw(../lib ../lib/base/t/lib);
9e998a43
RGS
7 }
8}
9
10use strict;
11
12use Test::More tests => 1;
13
14# Here we emulate a bug with base.pm not finding the Exporter version
15# for some reason.
16use lib qw(t/lib);
17use base qw(Dummy);
18
19is( $Dummy::VERSION, 5.562, "base.pm doesn't confuse the version" );