mirror of
https://github.com/php/php-src.git
synced 2026-04-19 14:01:01 +02:00
Support list() reference assignments of the form:
list(&$a, list(&$b, $c)) = $d;
RFC: https://wiki.php.net/rfc/list_reference_assignment
10 lines
201 B
PHP
10 lines
201 B
PHP
--TEST--
|
|
"Reference Unpacking - Compile Error (const)" list()
|
|
--FILE--
|
|
<?php
|
|
const FOO = 10;
|
|
[&$f] = FOO;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot assign reference to non referencable value in %s on line %d
|