view run/with_11.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents 6e4063f99377
children 7b7967dd4203
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@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2042

module dstress.run.with_11;

auto class AutoClass{
}

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

	with(ac){
	}

	return 0;
}