view run/b/bug_cod3_1760_A.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents dc2b72773b7f
children
line wrap: on
line source

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

// @author@	Thomas Kühne <thomas-dloop@kuehne.cn>
// @date@	2007-02-15
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=964
// @desc@	[Issue 964] Internal error: ../ztc/cod3.c 1760

module dstress.run.b.bug_cod3_1760_A;

void func(){
}

int main(){
	if(*cast(int*)&func){
		return 0;
	}
	assert(0);
}