summaryrefslogtreecommitdiff
path: root/tests/lang/bug24908.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug24908.phpt')
-rwxr-xr-xtests/lang/bug24908.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/lang/bug24908.phpt b/tests/lang/bug24908.phpt
deleted file mode 100755
index 30056abf3c..0000000000
--- a/tests/lang/bug24908.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-Bug #24908 (super-globals can not be used in __destruct())
---INI--
-variables_order=GPS
---FILE--
-<?php
-class test {
- function __construct() {
- if (count($_SERVER)) echo "O";
- }
- function __destruct() {
- if (count($_SERVER)) echo "K\n";
- }
-}
-$test = new test();
-?>
---EXPECT--
-OK