diff options
Diffstat (limited to 'tests/lang/catchable_error_002.phpt')
-rw-r--r-- | tests/lang/catchable_error_002.phpt | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/lang/catchable_error_002.phpt b/tests/lang/catchable_error_002.phpt deleted file mode 100644 index c1762b2db7..0000000000 --- a/tests/lang/catchable_error_002.phpt +++ /dev/null @@ -1,37 +0,0 @@ ---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'); - - blah (new StdClass); - echo "ALIVE!\n"; -?> ---EXPECTF-- -array(5) { - [0]=> - int(4096) - [1]=> - string(%d) "Argument 1 passed to blah() must be an instance of Foo, instance of stdClass given, called in %scatchable_error_002.php on line %d and defined" - [2]=> - string(%d) "%scatchable_error_002.php" - [3]=> - int(5) - [4]=> - array(0) { - } -} -ALIVE! |