summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_005.phpt
blob: 6089a771f4c6bbb1502032e12392ccbc8dad7af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--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