summaryrefslogtreecommitdiffstats
path: root/t/data_new/basic/Foo.pm
blob: 36859513444378dfc57412b524c7d25322b036a4 (plain) (blame)
1
2
3
4
5
6
7
package Foo;
use strict;
use warnings;

sub call { uc(__PACKAGE__) }

1;