diff options
Diffstat (limited to 'cpan/Devel-DProf/dprof/test3_t')
-rw-r--r-- | cpan/Devel-DProf/dprof/test3_t | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cpan/Devel-DProf/dprof/test3_t b/cpan/Devel-DProf/dprof/test3_t new file mode 100644 index 0000000000..a5327f4d7a --- /dev/null +++ b/cpan/Devel-DProf/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(); |