From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

## name standard pass
## failures 0
## cut
use strict;
no strict;
#-----------------------------------------------------------------------------
## name standard fail
## failures 1
## cut
use strict;
no strict;
print 1;
print 2;
print 3;
print 4;
#-----------------------------------------------------------------------------
## name pass that's almost to fail
## failures 0
## cut
use strict;
no strict;
print 1;
print 2;
print 3;
#-----------------------------------------------------------------------------
## name in a block
## failures 0
## cut
use strict;
sub foo {
no strict;
}
print 1;
print 2;
print 3;
print 4;
#-----------------------------------------------------------------------------
## name long fail in a block
## failures 1
## cut
use strict;
sub foo {
no strict;
print 1;
print 2;
print 3;
print 4;
}
#-----------------------------------------------------------------------------
## name config override
## failures 0
## parms { statements => 6 }
## cut
use strict;
sub foo {
no strict;
print 1;
print 2;
print 3;
print 4;
print 5;
print 6;
}
#-----------------------------------------------------------------------------
##############################################################################
# $Date: 2009-02-15 11:10:42 -0600 (Sun, 15 Feb 2009) $
# $Author: clonezone $
# $Revision: 3116 $
##############################################################################
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
# fill-column: 78
# indent-tabs-mode: nil
# c-indentation-style: bsd
# End:
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :