1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/Zend/tests/errmsg_005.phpt
Antony Dovgal 0f0fe9c967 MFH: new tests
2007-02-07 11:10:32 +00:00

19 lines
273 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