view nocompile/bug_cgcod_1445_B.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents 592f9ae41ba5
children
line wrap: on
line source

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

// @author@	Brian Gardner <briangr@friberg.us>
// @date@	2005-03-23
// @uri@	news:d1sald$2u6e$1@digitaldaemon.com

// __DSTRESS_ELINE__ 13

module dstress.nocompile.bug_cgcod_1445_B;

typedef u *u();

u s(){
	static int x = 0;
	return s();
}

int main(){
	s();
	return 0;
}