1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 12:13:02 +02:00
Files
archived-php-src/Zend/tests/bug52001.phpt
2019-10-02 10:34:08 +02:00

18 lines
288 B
PHP

--TEST--
Bug #52001 (Memory allocation problems after using variable variables)
--FILE--
<?php
a(0,$$var);
$temp1=1;
$temp2=2;
var_dump($temp1);
function a($b,$c) {}
?>
--EXPECTF--
Warning: Undefined variable: var in %s on line %d
Warning: Undefined variable: in %s on line %d
int(1)