mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
24 lines
315 B
PHP
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===
|