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