annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1306
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
1 // $HeadURL$
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
2 // $Date$
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
3 // $Author$
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
4
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
5 // @author@ Brad Roberts <braddr@puremagic.com>
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
6 // @date@ 2006-06-06
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=175
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
8 // @desc@ [Issue 175] ice while building aaA.d with enable checking
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
9
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
10 module dstress.compile.n.nested_function_08_A;
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
11
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
12 struct Struct {
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
13 int i;
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
14 }
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
15
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
16 Struct outer() {
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
17 Struct a;
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
18 void inner(){
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
19 }
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
20
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
21 return a;
9c9d8a7ddcb4 [Issue 175] ice while building aaA.d with enable checking
thomask
parents:
diff changeset
22 }