view run/odd_bug_01.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents f87ba6507260
children b8c0195059d9
line wrap: on
line source

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

// @author@	Paul Runde <prunde@consolidated.net>
// @date@	2004-06-02
// @uri@	news:c9jcpq$1fu$1@digitaldaemon.com

module dstress.run.odd_bug_01;

int[2] x = 3;
float y = 0.0f;

int main(){
	assert(x[0]==3);
	assert(x[1]==3);
	y = -100;
	assert(x[0]==3);
	assert(x[1]==3);
	return 0;
}