view run/c/const_28_A.d @ 777:2f10fa84a21b

bulk offline commit
author thomask
date Fri, 16 Dec 2005 18:23:51 +0000
parents
children 20d8ee6523e1
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_A;

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

struct Leaf{
	int[arity] data;
}

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

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