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

use Exporter::Lexical -exports => [ qw(foo) ];

sub foo { "FOO" }

1;