summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_004.phpt
blob: 7e71b41087a8157ae685996d5839a3e0510655b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
errmsg: can't use function return value in write context
--FILE--
<?php

function foo() {
    return "blah";
}

foo() = 1;

echo "Done\n";
?>
--EXPECTF--
Fatal error: Can't use function return value in write context in %s on line %d