This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlapi: Place in dictionary sort order
[perl5.git] / lib / perl5db / t / test-dieLevel-option-1
CommitLineData
b705c774
SF
1use strict;
2use warnings;
3
4sub foo
5{
6 print "In foo\n";
7 bar();
8}
9
10sub bar
11{
12 print "In baz\n";
13 baz();
14}
15
16sub baz
17{
18 die "This program dies.";
19}
20
21foo();
22