view run/const_05.d @ 153:ce33adb482a7

added const tests
author thomask
date Thu, 25 Nov 2004 15:25:04 +0000
parents
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $URL$

module dstress.run.const_05;

const int c = b + 1;
const int a = 1;
const int b = a + 1;

int main(){
	assert(a==1);
	assert(b==2);
	assert(c==3);
	return 0;
}