summaryrefslogtreecommitdiff
path: root/Zend/tests/bug39003.phpt
blob: 5f7c7849762dc2d432235130418ed1743f50e936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--TEST--
Bug #39003 (autoloader is called for type hinting)
--FILE--
<?php

class ClassName
{
    public $var = 'bla';
}

function test (OtherClassName $object) { }

spl_autoload_register(function ($class) {
    var_dump("__autload($class)");
});

$obj = new ClassName;
test($obj);

echo "Done\n";
?>
--EXPECTF--
Fatal error: Uncaught TypeError: test(): Argument #1 ($object) must be of type OtherClassName, ClassName given, called in %s:%d
Stack trace:
#0 %s(%d): test(Object(ClassName))
#1 {main}
  thrown in %s on line %d