php-src/Zend/tests/varSyntax/tempDimFetchByRefError.phpt

12 lines
231 B
Plaintext
Raw Normal View History

2014-05-31 18:15:55 +00:00
--TEST--
Passing a dimention fetch on a temporary by reference is not allowed
--FILE--
<?php
$fn = function(&$ref) {};
$fn([0, 1][0]);
?>
--EXPECTF--
Fatal error: Cannot use temporary expression in write context in %s on line %d