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