mirror of
https://github.com/php/php-src.git
synced 2026-04-18 21:41:22 +02:00
16 lines
228 B
PHP
16 lines
228 B
PHP
--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)
|