The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test;
BEGIN { plan tests => 3 }
package TestPkg;
use Exporter::Dispatch;
Test::ok(1);

sub sub_a { Test::ok(1) }
package main;
my $table = create_dptable TestPkg;
ok(1);

$table->{sub_a}->("Hello!");