view run/i/import_08_B.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9dcac8d4e97f
children
line wrap: on
line source

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

// @author@	zwang <nehzgnaw@gmail.com>
// @date@	2005-09-17
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5018

// __DSTRESS_DFLAGS__ addon/import_08_Z.d

module dstress.run.i.import_08_B;

import addon.import_08_Z;

class C{
	import addon.import_08_Z;
}

int main(){
	int x;

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

	assert(x==2);

	return 0;
}