view run/t/template_31_B.d @ 1613:70a23cb6a616

Fix incorrect run.t.throw_07_A/B tests
author Christian Kamm <kamm incasoftware de>
date Sun, 10 May 2009 12:10:34 +0200
parents 20545aed98f2
children
line wrap: on
line source

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

// @author@	Victor Nakoryakov <Victor_member@pathlink.com>
// @date@	2006-03-11
// @uri@	news:duukb8$2vvd$1@digitaldaemon.com

module dstress.run.t.template_31_B;

template C(int x){
	int C(){
		return x;
	}
}

int main(){
	const int a = 3;

	auto b = C!(a)();

	if(!is(typeof(a) : typeof(b))){
		assert(0);
	}

	if(!is(typeof(b) : typeof(a))){
		assert(0);
	}

	if(a != b){
		assert(0);
	}
	
	return 0;
}