freebsd-dev/contrib/perl5/t/op/wantarray.t

17 lines
310 B
Perl
Raw Normal View History

#!./perl
print "1..3\n";
sub context {
my ( $cona, $testnum ) = @_;
my $conb = (defined wantarray) ? ( wantarray ? 'A' : 'S' ) : 'V';
unless ( $cona eq $conb ) {
print "# Context $conb should be $cona\nnot ";
}
print "ok $testnum\n";
}
context('V',1);
$a = context('S',2);
@a = context('A',3);
1;