Issue 150: Mixed array types
Status:  Fixed
Owner:
Closed:  Feb 2012
Project Member Reported by gameh...@gmail.com, Oct 30, 2011
Array is unified to Array<Int>

class Test {

   public static function main()
   {
      var properties:Dynamic = { x: 100 };
      trace([ properties,1 ]);

      var d = new Array<Dynamic>();
      d.push(properties);
      d.push(1);
      trace(d);
   }
	
}
Feb 8, 2012
Project Member #1 gameh...@gmail.com
This one is a haxe compiler issue, and I believe Nicolas has addressed it.
Status: Fixed