blob: 01031b8b1d7da8c9d74dd32435d46823334016fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Method calls on non-objects raise recoverable errors
--FILE--
<?php
$x= null;
$x->method();
echo "Should not get here!\n";
?>
--EXPECTF--
Catchable fatal error: Call to a member function method() on null in %s on line %d
|