comparison compile/n/nested_function_08_A.d @ 1306:9c9d8a7ddcb4

[Issue 175] ice while building aaA.d with enable checking Brad Roberts <braddr@puremagic.com> 2006-06-06 http://d.puremagic.com/issues/show_bug.cgi?id=175
author thomask
date Sun, 31 Dec 2006 02:00:53 +0000
parents
children
comparison
equal deleted inserted replaced
1305:3db9417bb11c 1306:9c9d8a7ddcb4
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Brad Roberts <braddr@puremagic.com>
6 // @date@ 2006-06-06
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=175
8 // @desc@ [Issue 175] ice while building aaA.d with enable checking
9
10 module dstress.compile.n.nested_function_08_A;
11
12 struct Struct {
13 int i;
14 }
15
16 Struct outer() {
17 Struct a;
18 void inner(){
19 }
20
21 return a;
22 }