view nocompile/s/struct_29_B.d @ 1398:51ad523322be

[Issue 1030] ICE one-liner; struct in delegate downs <default_357-line@yahoo.de> 2007-03-07 http://d.puremagic.com/issues/show_bug.cgi?id=1030
author thomask
date Thu, 08 Mar 2007 16:25:04 +0000
parents
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	downs <default_357-line@yahoo.de>
// @date@	2007-03-07
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1030
// @desc@	[Issue 1030] ICE one-liner; struct in delegate

module dstress.nocompile.s.struct_29_B;

void main() {
		struct test1{}
	void delegate() test = {
		struct test2{
		}
	};
}