File: Target.pm

package info (click to toggle)
libtest2-suite-perl 0.000139-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,624 kB
  • sloc: perl: 6,398; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
package MyTest::Target;

use Carp qw/confess/;

use overload bool => sub { confess( 'illegal use of overloaded bool') } ;
use overload '""' => sub { $_[0] };

1;