view run/odd_bug_01.d @ 1:3414705c41ac

removed CVS header
author thomask
date Sun, 26 Sep 2004 12:06:09 +0000
parents 3269e4627918
children a33ad7189d21
line wrap: on
line source


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

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;
}