Change 18862 by [EMAIL PROTECTED] on 2003/03/09 11:48:37
... and add a test case for bug #20798
Affected files ...
... //depot/perl/t/op/eval.t#27 edit
Differences ...
==== //depot/perl/t/op/eval.t#27 (xtext) ====
Index: perl/t/op/eval.t
--- perl/t/op/eval.t#26~18319~ Tue Dec 17 02:08:24 2002
+++ perl/t/op/eval.t Sun Mar 9 03:48:37 2003
@@ -5,7 +5,7 @@
@INC = '../lib';
}
-print "1..87\n";
+print "1..88\n";
eval 'print "ok 1\n";';
@@ -419,3 +419,6 @@
$test++;
}
}
+
+sub Foo {} print Foo(eval {});
+print "ok ",$test++," - #20798 (used to dump core)\n";
End of Patch.