php-src/Zend/tests/methods-on-non-objects.phpt
Timm Friebe 9b6062071e Adjust expected fatal error message
Now also includes "on [TYPE]" after merge from master
2014-07-06 17:07:41 +02:00

13 lines
233 B
PHP

--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