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-warnLevel-option-1
CommitLineData
ca3d9398
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 warn "This is not a warning.";
19
20 return;
21}
22
23sub myfunc
24{
25 bar();
26}
27
28myfunc();
29