comparison nocompile/bug_cgcod_1445_A.d @ 362:d049cc89b187

bug_cgcod_1445 Brian Gardner <briangr@friberg.us> 2005-03-23 news:d1sald$2u6e$1@digitaldaemon.com
author thomask
date Fri, 25 Mar 2005 07:09:48 +0000
parents
children
comparison
equal deleted inserted replaced
361:0147a35cbeb7 362:d049cc89b187
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Brian Gardner <briangr@friberg.us>
6 // @date@ 2005-03-23
7 // @uri@ news:d1sald$2u6e$1@digitaldaemon.com
8
9 // __DSTRESS_ELINE__ 13
10
11 module dstress.nocompile.bug_cgcod_1445_A;
12
13 typedef u *u();
14
15 u s(){
16 static int x = 0;
17 return s;
18 }
19
20 int main(){
21 s();
22 return 0;
23 }
24