summaryrefslogtreecommitdiff
path: root/tests/func/002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/func/002.phpt')
-rw-r--r--tests/func/002.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/func/002.phpt b/tests/func/002.phpt
deleted file mode 100644
index 84e00eeeb5..0000000000
--- a/tests/func/002.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-Static variables in functions
---SKIPIF--
-<?php if(version_compare(zend_version(), "2.0.0-dev", '>=')) echo "skip removed in Zend Engine 2\n"; ?>
---FILE--
-<?php
-old_function blah (
- static $hey=0,$yo=0;
-
- echo "hey=".$hey++.", ",$yo--."\n";
-);
-
-blah();
-blah();
-blah();
-if (isset($hey) || isset($yo)) {
- echo "Local variables became global :(\n";
-}
---EXPECT--
-hey=0, 0
-hey=1, -1
-hey=2, -2