1--TEST--
2It's not possible to increment the return value of a function
3--FILE--
4<?php
5
6function test() {
7    return 42;
8}
9
10++test();
11
12?>
13--EXPECTF--
14Fatal error: Can't use function return value in write context in %s on line %d
15