The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package t::lib::Export;
use strict;
use warnings;

use Exporter;
our @ISA    = qw/Exporter/;
our @EXPORT = qw/foo/;

sub foo { 1 }

1;