| Issue 15: | Include missing if type is only referred to in constructor args. | |
| 1 person starred this issue and may be notified of changes. | Back to list |
//cpp bug
//mTilesheet = new Tilesheet(mResources.get("tiles"));
var bmp:gm2d.display.BitmapData = mResources.get("tiles");
mTilesheet = new Tilesheet(bmp);
Jul 30, 2010
Fixed on haxe svn
Jul 30, 2010
(No comment was entered for this change.)
Status:
Fixed
|
class B { public function new() { } } class C { public function new() { } } class A { public function new(inB:B) { } } class Test { public static function main() { var d:Dynamic = null; var a = new A(d); } }