view nocompile/bug_cgcod_1445_B.d @ 516:592f9ae41ba5

post DMD-0.122 review [1+2/n]
author thomask
date Tue, 10 May 2005 23:59:14 +0000
parents f87ba6507260
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;
}