view run/i/import_08_C.d @ 1091:9dcac8d4e97f

post DMD-0.163 review
author thomask
date Fri, 21 Jul 2006 11:15:26 +0000
parents 1e6afb94ce6d
children b8c0195059d9
line wrap: on
line source

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

// @author@	zwang <nehzgnaw@gmail.com>
// @date@	2005-09-17
// @uri@	news:dggsko$pi$1@digitaldaemon.com

// __DSTRESS_DFLAGS__ addon/import_08_Z.d

module dstress.run.i.import_08_C;

import addon.import_08_Z;

class C{
}

int main(){
	int x;

	with(new C){
		x = addon.import_08_Z.test(1);
	}

	assert(x==2);

	return 0;
}