Issue 15: Include missing if type is only referred to in constructor args.
Status:  Fixed
Owner:
Closed:  Jul 2010
Project Member Reported by gameh...@gmail.com, Apr 5, 2010
      //cpp bug
      //mTilesheet = new Tilesheet(mResources.get("tiles"));
      var bmp:gm2d.display.BitmapData = mResources.get("tiles");
      mTilesheet = new Tilesheet(bmp);

Jul 29, 2010
Project Member #1 gameh...@gmail.com

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);
	}
}
Jul 30, 2010
Project Member #2 gameh...@gmail.com
Fixed on haxe svn
Jul 30, 2010
Project Member #3 gameh...@gmail.com
(No comment was entered for this change.)
Status: Fixed