summaryrefslogtreecommitdiff
path: root/tests/lang/operators/operator_identical_recusion-01.phpt
blob: 3680e30e4d88480206722b40eac68bbd0dc0da2c (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)