xref: /openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/Markers.pm (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
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