summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/cpan/parent/t/lib/Dummy.pm
blob: 013632883204943d81a3f494fb33aae8439efc66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package Dummy;

# Attempt to emulate a bug with finding the version in Exporter.
$VERSION = '5.562';

sub exclaim { "I CAN FROM " . __PACKAGE__ }

package Dummy::InlineChild;

sub exclaim { "I CAN FROM " . __PACKAGE__ }

1;