mirror of
https://github.com/php/php-src.git
synced 2024-12-04 15:23:44 +08:00
17 lines
249 B
Plaintext
17 lines
249 B
Plaintext
|
--TEST--
|
||
|
Bug #72216 (Return by reference with finally is not memory safe)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
function &test() {
|
||
|
$a = ["ok"];
|
||
|
try {
|
||
|
return $a[0];
|
||
|
} finally {
|
||
|
$a[""] = 42;
|
||
|
}
|
||
|
}
|
||
|
var_dump(test());
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
string(2) "ok"
|