1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00
Files
archived-php-src/ext/opcache/tests/bug72762.phpt
Max Semenik e9f783fcdd Migrate skip checks to --EXTENSIONS--, p3
For rationale, see #6787

Extensions migrated in part 3:
* ftp
* gmp
* iconv
* opcache
* shmop
2021-04-03 15:23:25 +02:00

26 lines
338 B
PHP

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