view run/with_11.d @ 1594:c970971fb408

Remove nocompile/a/arrayOp_01: since array ops are now supported, it is no longer valid and needs to be replaced by a set of array op tests.
author Christian Kamm <kamm incasoftware de>
date Thu, 28 Aug 2008 17:33:00 +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;
}