... and add a test case for bug #20798
Rafael Garcia-Suarez [Sun, 9 Mar 2003 11:48:37 +0000 (11:48 +0000)]
p4raw-id: //depot/perl@18862

t/op/eval.t

index 8e8f69c..a6d78c4 100755 (executable)
@@ -5,7 +5,7 @@ BEGIN {
     @INC = '../lib';
 }
 
-print "1..87\n";
+print "1..88\n";
 
 eval 'print "ok 1\n";';
 
@@ -419,3 +419,6 @@ $test++;
     $test++;
   }
 }
+
+sub Foo {} print Foo(eval {});
+print "ok ",$test++," - #20798 (used to dump core)\n";