1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00
Files
archived-php-src/Zend/tests/bug49037.phpt
2009-07-28 13:01:40 +00:00

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
)