php-src/Zend/tests/errmsg_005.phpt

19 lines
272 B
Plaintext
Raw Normal View History

2007-02-07 11:10:32 +00:00
--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";
?>
2018-09-16 17:16:42 +00:00
--EXPECTF--
2007-02-07 11:10:32 +00:00
Fatal error: Can't use method return value in write context in %s on line %d