1--TEST-- 2Type inference 010: FRTCH_DIM_W 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.optimization_level=-1 7--FILE-- 8<?php 9function foo() { 10 $x = false; 11 $x[] = &$y; 12} 13foo(); 14?> 15DONE 16--EXPECTF-- 17Deprecated: Automatic conversion of false to array is deprecated in %sinference_010.php on line 4 18DONE 19