summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/t/op/wantarray.t
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/t/op/wantarray.t')
-rwxr-xr-xcontrib/perl5/t/op/wantarray.t6
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/perl5/t/op/wantarray.t b/contrib/perl5/t/op/wantarray.t
index 0a47b6d..4b6f37c 100755
--- a/contrib/perl5/t/op/wantarray.t
+++ b/contrib/perl5/t/op/wantarray.t
@@ -1,6 +1,6 @@
#!./perl
-print "1..3\n";
+print "1..7\n";
sub context {
my ( $cona, $testnum ) = @_;
my $conb = (defined wantarray) ? ( wantarray ? 'A' : 'S' ) : 'V';
@@ -13,4 +13,8 @@ sub context {
context('V',1);
$a = context('S',2);
@a = context('A',3);
+scalar context('S',4);
+$a = scalar context('S',5);
+($a) = context('A',6);
+($a) = scalar context('S',7);
1;
OpenPOWER on IntegriCloud