1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/Zend/tests/varSyntax/tempDimFetchByRefError.phpt
2015-05-17 17:31:43 -05:00

15 lines
288 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: Uncaught Error: Cannot use temporary expression in write context in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d