summaryrefslogtreecommitdiff
path: root/tests/lang/operators/operator_identical_recusion-01.phpt
blob: 4828c2a383f8b12d352709a9ee242dad8da41012 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Test === operator : False recursion detection
--FILE--
<?php
$n = 0;
$a = [[$n]];
$b = [&$a];
var_dump($a === $b);
?>
--EXPECT--
bool(false)