mirror of
https://github.com/php/php-src.git
synced 2025-01-24 20:53:37 +08:00
10 lines
276 B
PHP
10 lines
276 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: spl_autoload(): Class ThisClassDoesNotExistEverFoo could not be loaded in %s on line 3
|