view nocompile/bug_mtype_507_A.d @ 243:7c8580d800ab

updated meta data for mtype_507
author thomask
date Sun, 23 Jan 2005 10:51:04 +0000
parents 7aa29e681c0a
children 1f6cf5ccfbc9
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
// @date@	2005-01-22
// @uri@	news:csvvet$2g4$1@digitaldaemon.com
// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/2741

module dstress.nocompile.bug_mtype_507_A;

int main(){
	Object o;
	int i;
	if(i==o){
		return -1;
	}
	return 0;
}