Convert op/read.t to use test.pl and make it stricture compliant.
[p5sagit/p5-mst-13.2.git] / t / lib / dprof / test8_t
CommitLineData
7619c85e 1sub foo {
2 print "in sub foo\n";
3}
4
19bcb543 5sub bar {
6 print "in sub bar\n";
7 $^P -= 0x40;
8}
9
7619c85e 10foo();
11$^P -= 0x40;
12foo();
19bcb543 13$^P += 0x40;
14bar();
15$^P += 0x40;