view run/s/static_33_B.d @ 1011:5b0ba71b22a9

fixed "deprecated" typo
author thomask
date Fri, 19 May 2006 17:45:10 +0000
parents 9a2158064fdd
children
line wrap: on
line source

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

module dstress.run.s.static_33_B;

static x = 4;

int main(){
	if(typeid(typeof(x)).toString() != "int"){
		assert(0);
	}
	
	return 0;
}