summaryrefslogtreecommitdiff
path: root/tests/lang/catchable_error_002.phpt
blob: 50f06051e303b1ac54c7c040d85e1fced679aab9 (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
28
29
--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!