mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
13 lines
234 B
PHP
13 lines
234 B
PHP
--TEST--
|
|
Fixed bug #69756 (Fatal error: Nesting level too deep - recursive dependency? with ===).
|
|
--FILE--
|
|
<?php
|
|
$arr = range(1, 2);
|
|
foreach($arr as &$item ) {
|
|
var_dump($arr === array(1, 2));
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|