13 lines
309 B
PHP
13 lines
309 B
PHP
--TEST--
|
|
Bug #38325 (spl_autoload_register() gaves wrong line for "class not found")
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register();
|
|
new ThisClassDoesNotExistEverFoo();
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Class "ThisClassDoesNotExistEverFoo" not found in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line 3
|