view run/t/typedef_06_B.d @ 543:4b941e2f6d4f

typedef & class members Mizuno Hiroki <hiroki1124@hotmail.com> 2005-05-16 news:d6ac08$1uug$1@digitaldaemon.com
author thomask
date Tue, 17 May 2005 15:26:54 +0000
parents
children b8c0195059d9
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Mizuno Hiroki <hiroki1124@hotmail.com>
// @date@	2005-05-16
// @uri@	news:d6ac08$1uug$1@digitaldaemon.com

module dstress.run.t.typedef_06_B;

class Org{
	int dyn(int i){
		return i*2;
	}
}

typedef Org Ali;

int main(){
	Ali a = new Ali;

	assert(a.dyn(3)==6);
	
	return 0;
}