summaryrefslogtreecommitdiffstats
path: root/t/lib/Foo.pm
blob: 14521ad2ad47e89b7dd67bf03fe913e36f488810 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package Foo;
use strict;
use warnings;

use Exporter::Lexical;

our @EXPORT = ('foo');

sub foo { "FOO" }

1;