view run/auto_04.d @ 1515:516ef5730874

[Issue 1108] Indexing an int[] not evaluatable at compile time Reiner Pope <reiner.pope@gmail.com> 2007-04-07 http://d.puremagic.com/issues/show_bug.cgi?id=1108
author thomask
date Wed, 25 Apr 2007 17:47:00 +0000
parents 6e4063f99377
children ec5e144583ea
line wrap: on
line source

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

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2004-09-11
// @uri@	news:chtj6t$24bm$1@digitaldaemon.com
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=1821

module dstress.run.auto_04;

int status;

auto class AutoClass{
	this(){
		assert(status==0);
		status+=2;
	}
	~this(){
		assert(status==2);
		status--;
		throw new Exception("error msg");
	}
}

void check(){
	auto AutoClass ac = new AutoClass();
	throw new Exception("check error");
}

int main(){
	assert(status==0);
	try{
		check();
	}catch{
		assert(status==1);
		status-=5;
	}
	
	if(status==-4){
		return 0;
	}
	assert(0);
}