php-src/Zend/tests/errmsg_005.phpt
2020-02-03 22:52:20 +01:00

19 lines
284 B
PHP

--TEST--
errmsg: can't use method return value in write context
--FILE--
<?php
class test {
function foo() {
return "blah";
}
}
$t = new test;
$t->foo() = 1;
echo "Done\n";
?>
--EXPECTF--
Fatal error: Can't use method return value in write context in %s on line %d