1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/opcache/tests/bug72762.phpt
2016-08-05 16:27:55 +02:00

24 lines
315 B
PHP

--TEST--
Bug #72762: Infinite loop while parsing a file with opcache enabled
--FILE--
<?php
class foo
{
function bar()
{
$b = array();
foreach ($a as $a) {
foreach ($b as $k => $v) {
}
$b[$k] = $v;
}
}
}
?>
===DONE===
--EXPECT--
===DONE===