1--TEST--
2Register Alloction 005: Incorrect double/long register hinting
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7--FILE--
8<?php
9function test() {
10	$j = 0;
11    for ($i = 1; $i < 10; $i++) {
12        $i = 0.0;
13        $j++;
14        if ($j > 10) break;
15    }
16}
17test();
18?>
19DONE
20--EXPECT--
21DONE