1--TEST--
2Register Alloction 017: Missing store
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--FILE--
9<?php
10function test() {
11    for($i = 0; $i < 10; $i++) {
12        $a = $b = $a + !$a = !$a;
13        $c = $c = $a;
14        $c % $a;
15    }
16}
17@test();
18?>
19DONE
20--EXPECT--
21DONE
22