comparison nocompile/s/struct_29_A.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
comparison
equal deleted inserted replaced
1397:8cbb1b6de2a3 1398:51ad523322be
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ downs <default_357-line@yahoo.de>
6 // @date@ 2007-03-07
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=1030
8 // @desc@ [Issue 1030] ICE one-liner; struct in delegate
9
10 module dstress.nocompile.s.struct_29_A;
11
12 void main() {
13 void delegate() test = {
14 struct test2{
15 ;
16 }
17 };
18 }