view run/d/deprecated_21_A.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +0200
parents 9dcac8d4e97f
children
line wrap: on
line source

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

// __DSTRESS_DFLAGS__ -d

module dstress.run.d.deprecated_21_A;

deprecated x = 4.0;

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

	return 0;
}