view run/with_11.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 4d41d450901e
children a33ad7189d21
line wrap: on
line source

// @author@	Nick <Nick_member@pathlink.com>
// @date@	2004-10-07
// @uri@	news://ck3qie$1nia$1@digitaldaemon.com
// @url@	nttp://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;
}