1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00
Files
2024-01-15 09:39:13 +01:00

28 lines
389 B
PHP

--TEST--
Register Alloction 016: Missing type store
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
--FILE--
<?php
function foo() {
for($cnt = 0; $cnt < 6; $cnt++) {
var_dump($x);
$a - 536 >> 4 - $y - 4 << ++$x == $a ?: $b;
$a .= !$a;
$x = $a ? $b : $b;
}
}
@foo();
?>
DONE
--EXPECTF--
NULL
NULL
NULL
NULL
NULL
NULL
DONE