changeset 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 3db9417bb11c
children 071d5525be12
files compile/n/nested_function_08_A.d
diffstat 1 files changed, 22 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/n/nested_function_08_A.d	Sun Dec 31 02:00:53 2006 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Brad Roberts <braddr@puremagic.com>
+// @date@	2006-06-06
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=175
+// @desc@	[Issue 175] ice while building aaA.d with enable checking
+
+module dstress.compile.n.nested_function_08_A;
+
+struct Struct {
+	int i;
+}
+
+Struct outer() {
+	Struct a;
+	void inner(){
+	}
+
+	return a;
+}