mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
13 lines
208 B
PHP
13 lines
208 B
PHP
--TEST--
|
|
Bug #48023 (spl_autoload_register didn't addref closures)
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register(function(){});
|
|
|
|
new Foo;
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Fatal error: Class 'Foo' not found in %s on line %d
|