mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
18 lines
309 B
PHP
18 lines
309 B
PHP
--TEST--
|
|
Dynamic calls to scope introspection functions are forbidden (misoptimization)
|
|
--FILE--
|
|
<?php
|
|
|
|
function test() {
|
|
$i = 1;
|
|
array_map('extract', [['i' => new stdClass]]);
|
|
$i += 1;
|
|
var_dump($i);
|
|
}
|
|
test();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Cannot call extract() dynamically in %s on line %d
|
|
int(2)
|