mirror of
https://github.com/php/php-src.git
synced 2026-04-27 01:48:26 +02:00
15 lines
160 B
PHP
15 lines
160 B
PHP
--TEST--
|
|
Bug #49037 (@list( $b ) = $a; causes a crash)
|
|
--FILE--
|
|
<?php
|
|
$a = array( "c" );
|
|
@list( $b ) = $a;
|
|
print_r( $a );
|
|
?>
|
|
--EXPECT--
|
|
Array
|
|
(
|
|
[0] => c
|
|
)
|
|
|