view run/c/const_28_I.d @ 1600:6d193e241564

Allow for tango math in creal tests.
author Christian Kamm <kamm incasoftware de>
date Sun, 04 Jan 2009 22:25:02 +0100
parents 2f10fa84a21b
children
line wrap: on
line source

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

// @author@	Manfred Nowak <svv1999@hotmail.com>
// @date@	2005-12-09
// @uri@	news:ns972710D168DCEsvv1999hotmailcom@63.105.9.61

module dstress.run.c.const_28_I;

const uint arity= 4096000;

struct Leaf{
	int[arity] data = void;
}

int main(){
	if(Leaf.data.length == arity){
		return 0;
	}
}