summaryrefslogtreecommitdiff
path: root/Zend/tests/try/bug72629.phpt
blob: 034a63b30612278b43c3d193ecc92eacc305f205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Bug #72629 (Caught exception assignment to variables ignores references)
--FILE--
<?php

$var = null;
$e = &$var;

try {
	throw new Exception;
} catch (Exception $e) { }

var_dump($var === $e);
--EXPECT--
bool(true)