diff options
Diffstat (limited to 'gnu/usr.bin/perl/t/lib/dprof/test3_t')
-rw-r--r-- | gnu/usr.bin/perl/t/lib/dprof/test3_t | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/t/lib/dprof/test3_t b/gnu/usr.bin/perl/t/lib/dprof/test3_t new file mode 100644 index 00000000000..a5327f4d7ad --- /dev/null +++ b/gnu/usr.bin/perl/t/lib/dprof/test3_t @@ -0,0 +1,19 @@ +sub foo { + print "in sub foo\n"; + exit(0); + bar(); +} + +sub bar { + print "in sub bar\n"; +} + +sub baz { + print "in sub baz\n"; + bar(); + foo(); +} + +bar(); +baz(); +foo(); |