view 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
line wrap: on
line source

// $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;
}