| Issue 150: | Mixed array types | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Fixed
|