The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Reading database from ...


------------------------------------------ ------ ------ ------ ------ ------
File                                         stmt   bran   cond    sub  total
------------------------------------------ ------ ------ ------ ------ ------
tests/special_blocks                        100.0    n/a    n/a    n/a  100.0
Total                                       100.0    n/a    n/a    n/a  100.0
------------------------------------------ ------ ------ ------ ------ ------


Run: ...
Perl version: ...
OS: ...
Start: ...
Finish: ...

tests/special_blocks

line  err   stmt   bran   cond    sub   code
1                                       #!/usr/bin/perl
2                                       
3                                       # Copyright 2002-2014, Paul Johnson (paul@pjcj.net)
4                                       
5                                       # This software is free.  It is licensed under the same terms as Perl itself.
6                                       
7                                       # The latest version of this software should be available from my homepage:
8                                       # http://www.pjcj.net
9                                       
10                                      use strict;
11                                      use warnings;
12                                      
13             1                        my $x;
14                                      
15                                      BEGIN {
16                                          $x++
17                                      }
18                                      
19                                      CHECK {
20                                          $x++
21                                      }
22                                      
23                                      INIT {
24                                          $x++
25                                      }
26                                      
27                                      END {
28                                          $x++
29                                      }
30                                      
31             1                        $x++;