view run/a/auto_10_A.d @ 1089:03b5056496f1

pre DMD-0.163 review
author thomask
date Wed, 19 Jul 2006 21:00:13 +0000
parents 7e8e5013a030
children 36bedfa079e6
line wrap: on
line source

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

module dstress.run.c.auto_10_A;

int main(){
	auto x = 4.0;

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

	return 0;
}