view run/version_10.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 3721550181c6
children
line wrap: on
line source

// check that BigEndian and LittleEndian can't be defined at the same time

module dstress.run.version_10;

int status;
version(BigEndian){
	version=LittleEndian;
	version(LittleEndian){
		version(BigEndian){
			static this(){
				status=1;
			}
		}
	}
}

int main(){
	assert(status==0);
	return 0;
}