Arrays of mixed types Symptom: Compiler error Arrays of mixed types are only allowed if the type is forced to Array<Dynamic> Explanation: Haxe 2 allowed Array declarations such as [1, "foo"] and inferred the type to Array<Dynamic>. Haxe 3 does allow these only if the type is explicitly set to Array<Dynamic>. Fix: Force the Array declaration to be typed against an explicit Array<Dynamic>. This incl