view run/version_11.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 the compiler feature D_InlineAsm can't be set for a non-supporting compiler

module dstress.run.version_11;

int status;

version(D_InlineAsm){
}else{
	version = D_InlineAsm;
	version(D_InlineAsm){
		static this(){
			status=1;
		}
	}
}
	
int main(){
	assert(status==0);
	return 0;
}