summaryrefslogtreecommitdiff
path: root/ext/XS-APItest/t/Markers.pm
blob: 56409c52155782f4b107275cde333e2a5bde7c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;