projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
58e33a9
)
... 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
patch
|
blob
|
blame
|
history
diff --git
a/t/op/eval.t
b/t/op/eval.t
index
8e8f69c
..
a6d78c4
100755
(executable)
--- a/
t/op/eval.t
+++ b/
t/op/eval.t
@@
-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";