summaryrefslogtreecommitdiff
path: root/Zend/tests/varSyntax/tempPropFetchByRefError.phpt
blob: f8298a936dca2d5268509c5b22efcd6ecb533a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Passing a property fetch on a temporary by reference is not allowed
--FILE--
<?php

$fn = function(&$ref) {};
$fn([0, 1]->prop);

?>
--EXPECTF--
Fatal error: Cannot use temporary expression in write context in %s on line %d