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

push @XS::APItest::bhkav, "run/pm";

use t::BHK push => "compile/pm/before";
sub import {
    use t::BHK push => "compile/pm/inside";
    push @XS::APItest::bhkav, "run/import";
}

use t::BHK push => "compile/pm/after";

1;