--TEST-- Bug #73896 (spl_autoload() crashes when calls magic _call()) --FILE-- doSomething(); } protected function autoload($class) { die("Protected autoload() called!\n"); } public function doSomething() { throw new teException(); } } $teLoader = new teLoader(); try { new teChild(); } catch (Throwable $e) { echo "Exception: ", $e->getMessage() , "\n"; } ?> --EXPECT-- Exception: Class "teException" not found