view run/with_11.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a33ad7189d21
children 6e4063f99377
line wrap: on
line source

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

// @author@	Nick <Nick_member@pathlink.com>
// @date@	2004-10-07
// @uri@	news:ck3qie$1nia$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/2042

module dstress.run.with_11;

auto class AutoClass{
}

int main(){
	auto AutoClass ac = new AutoClass();

	with(ac){
	}

	return 0;
}