summaryrefslogtreecommitdiff
path: root/Zend/tests/bug33116.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug33116.phpt')
-rwxr-xr-xZend/tests/bug33116.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/Zend/tests/bug33116.phpt b/Zend/tests/bug33116.phpt
deleted file mode 100755
index aa714a1f85..0000000000
--- a/Zend/tests/bug33116.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-Bug #33116 (crash when assigning class name to global variable in __autoload)
---FILE--
-<?php
-function __autoload($class)
-{
- $GLOBALS['include'][] = $class;
- eval("class DefClass{}");
-}
-
-$a = new DefClass;
-print_r($a);
-print_r($GLOBALS['include']);
-?>
---EXPECT--
-DefClass Object
-(
-)
-Array
-(
- [0] => DefClass
-)