summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug26640.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug26640.phpt')
-rwxr-xr-xext/reflection/tests/bug26640.phpt25
1 files changed, 0 insertions, 25 deletions
diff --git a/ext/reflection/tests/bug26640.phpt b/ext/reflection/tests/bug26640.phpt
deleted file mode 100755
index af7b0d032e..0000000000
--- a/ext/reflection/tests/bug26640.phpt
+++ /dev/null
@@ -1,25 +0,0 @@
---TEST--
-Bug #26640 (__autoload() not invoked by Reflection classes)
---FILE--
-<?php
-
-function __autoload($c)
-{
- class autoload_class
- {
- public function __construct()
- {
- print "autoload success\n";
- }
- }
-}
-
-$a = new Reflection_Class('autoload_class');
-
-if (is_object($a)) {
- echo "OK\n";
-}
-
-?>
---EXPECT--
-OK