Adrian M. Enache [Fri, 22 Aug 2003 11:49:34 +0000 (14:49 +0300)]
Message-ID: <
20030822084934.GA1257@ratsnest.hole>
p4raw-id: //depot/perl@20840
#!./perl
-print "1..54\n";
+print "1..55\n";
$x = 'x';
print ((exists $str{foo} ? "" : "not ")."ok $test\n"); ++$test;
print ((exists $str{bar} ? "" : "not ")."ok $test\n"); ++$test;
print ((exists $str{xyz::bar} ? "" : "not ")."ok $test\n"); ++$test;
+
+sub foo::::::bar { print "ok $test\n"; $test++ }
+foo::::::bar;