t/op/wantarray.t
Norton T. Allen [Wed, 18 Feb 1998 11:19:54 +0000 (06:19 -0500)]
p4raw-id: //depot/perl@555

t/op/wantarray.t [new file with mode: 0755]

diff --git a/t/op/wantarray.t b/t/op/wantarray.t
new file mode 100755 (executable)
index 0000000..0a47b6d
--- /dev/null
@@ -0,0 +1,16 @@
+#!./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;