view run/a/array_initialization_21_F.d @ 1322:a8cf8aa0da50

fixed malformed @uri@ entries
author thomask
date Sun, 31 Dec 2006 20:00:23 +0000
parents 7e8e5013a030
children b8c0195059d9
line wrap: on
line source

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

// @author@	clayasaurus <clayasaurus@gmail.com>
// @date@	2005-12-25
// @uri@	news:news:donatt$1acv$1@digitaldaemon.com

module dstress.run.a.array_initialization_21_F;

const int MAX_PARTICLES = 10000;

struct Particle{
	float a;
	float b;
	float c;
	float d;
}

Particle particles[MAX_PARTICLES];

int main(){
	if(particles.length != MAX_PARTICLES){
		assert(0);
	}
	return 0;
}