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