1--TEST-- 2Register Alloction 019: Incorrect type assumption after spilling 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 $x != $y; 12 $x =- +$y; 13 $x != $y; 14 $x = $y; 15 } 16} 17@test(); 18?> 19DONE 20--EXPECTF-- 21DONE 22