1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 23:18:13 +02:00
Files
archived-php-src/tests/lang/operators/operator_identical_recusion-01.phpt
T
2017-10-06 11:47:11 +03:00

10 lines
146 B
PHP

--TEST--
Test === operator : False recursion detection
--FILE--
<?php
$n = 0;
$a = [[$n]];
$b = [&$a];
var_dump($a === $b);
--EXPECT--
bool(false)