summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2003-05-27 17:24:10 +0000
committerSVN Migration <svn@php.net>2003-05-27 17:24:10 +0000
commitdc963b2f91ae48faae7edf4609a8c7427dc9317a (patch)
tree5e9f8f68adf108d8b9a20103f9fcbd1063a70d7c /tests
parent858c75805fe042600327280402a80ca651a9fb90 (diff)
downloadphp-git-php-4.3.2RC4.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_4_3_2RC4'.php-4.3.2RC4
Diffstat (limited to 'tests')
-rw-r--r--tests/lang/bug17115.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/lang/bug17115.phpt b/tests/lang/bug17115.phpt
deleted file mode 100644
index 0cb3bf44d2..0000000000
--- a/tests/lang/bug17115.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Bug #17115 (lambda functions produce segfault with static vars)
---FILE--
-<?php
-$func = create_function('','
- static $foo = 0;
- return $foo++;
-');
-var_dump($func());
-var_dump($func());
-var_dump($func());
-?>
---EXPECT--
-int(0)
-int(1)
-int(2)