File: warndie.pl

package info (click to toggle)
liberror-perl 0.17-1.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 196 kB
  • ctags: 63
  • sloc: perl: 1,056; makefile: 38
file content (23 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl -w

require Error;
if( $ARGV[0] ) {
    import Error qw( :warndie );
    print "Imported the :warndie tag.\n";
    print "\n";
}
else {
    print "Running example without the :warndie tag.\n";
    print "Try also passing a true value as \$ARGV[0] to import this tag\n";
    print "\n";
}

sub inner {
  shift->foo();
}

sub outer {
  inner( @_ );
}

outer( undef );