view run/s/scope_16_A.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 5f46d690a3aa
children
line wrap: on
line source

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

module dstress.run.s.scope_16_A;

int main(){
	scope x = 1.5;
	static assert(is(typeof(x) == double));
	
	x++;
	if(x != 2.5){
		assert(0);
	}
	return 0;
}