Reading database from /home/pjcj/g/perl/dev/Devel-Cover-0.3209/cover_db


------------------------------------------ ------ ------ ------ ------ ------
File                                         stmt branch   cond    sub  total
------------------------------------------ ------ ------ ------ ------ ------
tests/eval1                                100.00    n/a    n/a 100.00 100.00
Total                                      100.00    n/a    n/a 100.00 100.00
------------------------------------------ ------ ------ ------ ------ ------


tests/eval1

line  err   stmt branch   cond    sub   code
1                                       #!/usr/bin/perl
2                                       
3                                       # Copyright 2002-2004, Paul Johnson (pjcj@cpan.org)
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                                      use lib -d "t" ? "t" : "..";
14                                      
15             1                        my $x;
16                                      
17             1                  100   eval <<'EOS';
               1                        
               1                        
18                                      sub e
19                                      {
20                                          $x++;
21                                          $x
22                                      }
23                                      EOS
24                                      
25             1                        e();


Covered Subroutines
-------------------

Subroutine Location      
---------- --------------
e          tests/eval1:17