diff options
Diffstat (limited to 'ext/reflection/tests/bug26640.phpt')
-rwxr-xr-x | ext/reflection/tests/bug26640.phpt | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ext/reflection/tests/bug26640.phpt b/ext/reflection/tests/bug26640.phpt deleted file mode 100755 index 026e67561a..0000000000 --- a/ext/reflection/tests/bug26640.phpt +++ /dev/null @@ -1,27 +0,0 @@ ---TEST-- -Reflection Bug #26640 (__autoload() not invoked by Reflection classes) ---SKIPIF-- -<?php extension_loaded('reflection') or die('skip'); ?> ---FILE-- -<?php - -function __autoload($c) -{ - class autoload_class - { - public function __construct() - { - print "autoload success\n"; - } - } -} - -$a = new ReflectionClass('autoload_class'); - -if (is_object($a)) { - echo "OK\n"; -} - -?> ---EXPECT-- -OK |