xref: /openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/Markers.pm (revision 898184e3e61f9129feb5978fad5a8c6865f00b92)
1package t::Markers;
2
3push @XS::APItest::bhkav, "run/pm";
4
5use t::BHK push => "compile/pm/before";
6sub import {
7    use t::BHK push => "compile/pm/inside";
8    push @XS::APItest::bhkav, "run/import";
9}
10
11use t::BHK push => "compile/pm/after";
12
131;
14