1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/Zend/tests/varSyntax/tempDimFetchByRefError.phpt
2014-11-19 20:23:00 +00:00

12 lines
231 B
PHP

--TEST--
Passing a dimension 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