mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
20 lines
460 B
PHP
20 lines
460 B
PHP
--TEST--
|
|
Ensure type hints for unknown types do not trigger autoload.
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register(function ($name) {
|
|
echo "In autoload: ";
|
|
var_dump($name);
|
|
});
|
|
|
|
function f(UndefClass $x)
|
|
{
|
|
}
|
|
f(new stdClass);
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught TypeError: f(): Argument #1 ($x) must be of type UndefClass, stdClass given, called in %s on line %d and defined in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): f(Object(stdClass))
|
|
#1 {main}
|
|
thrown in %s on line %d
|