summaryrefslogtreecommitdiff
path: root/Zend/tests/try/bug72629.phpt
blob: 2e8e40d6b2c9cc6153801a71bedd4feb4267f562 (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)