view run/a/auto_10_B.d @ 1086:7e8e5013a030

gdc-0.19 review
author thomask
date Tue, 18 Jul 2006 22:51:49 +0000
parents 9a121126b077
children 03b5056496f1
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;
}