php-src/tests/lang/catchable_error_002.phpt
Máté Kocsis 960318ed95
Change argument error message format
Closes GH-5211
2020-02-26 15:00:08 +01:00

30 lines
493 B
PHP

--TEST--
Catchable fatal error [2]
--FILE--
<?php
class Foo {
}
function blah (Foo $a)
{
}
function error()
{
$a = func_get_args();
var_dump($a);
}
set_error_handler('error');
try {
blah (new StdClass);
} catch (Error $ex) {
echo $ex->getMessage(), "\n";
}
echo "ALIVE!\n";
?>
--EXPECTF--
blah(): Argument #1 ($a) must be of type Foo, stdClass given, called in %scatchable_error_002.php on line %d
ALIVE!