mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
15 lines
215 B
PHP
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
|