view run/a/auto_10_B.d @ 1534:345207906be7

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:35 +0000
parents 03b5056496f1
children 36bedfa079e6
line wrap: on
line source

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

module dstress.run.c.auto_10_B;

int main(){
	auto x = 4;

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

	return 0;
}