view run/c/const_28_E.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
parents 20d8ee6523e1
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_E;

const uint a = 4000;
const uint b = 1024;
const uint arity= a * b;

struct Leaf{
	int[arity] data;
}

void init(ref Leaf* leaf){
	leaf= new Leaf;
}

int main(){
	if(Leaf.data.length == a * b){
		return 0;
	}
}