blob: ed0ff9e35a79a161ef562b67a9175b9b9108d3f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--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
|