php-src/Zend/tests/bug72215.phpt

17 lines
221 B
Plaintext
Raw Normal View History

--TEST--
Bug #72215 (Wrong return value if var modified in finally)
--FILE--
<?php
function test() {
$a = 1;
try {
return $a;
} finally {
$a = 2;
}
}
var_dump(test());
?>
--EXPECT--
int(1)