1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 23:18:13 +02:00
Files
archived-php-src/Zend/tests/list_009.phpt
T
2016-05-20 01:51:05 +02:00

15 lines
215 B
PHP

--TEST--
list with by-reference assignment should fail
--FILE--
<?php
$a = [1];
[&$foo] = $a;
$foo = 2;
var_dump($a);
?>
--EXPECTF--
Fatal error: [] and list() assignments cannot be by reference in %s on line %d