xref: /PHP-5.5/ext/spl/tests/bug38325.phpt (revision 33e01788)
1--TEST--
2Bug #38325 (spl_autoload_register() gaves wrong line for "class not found")
3--FILE--
4<?php
5spl_autoload_register();
6new ThisClassDoesNotExistEverFoo();
7?>
8--EXPECTF--
9Fatal error: spl_autoload(): Class ThisClassDoesNotExistEverFoo could not be loaded in %s on line 3
10