comparison run/b/bug_toobj_191_B.d @ 600:c0ba153df32f

toobj.c:191: virtual void ClassDeclaration::toObjFile(): Assertion `!scope' failed Ant^2i <Ant^2i_member@pathlink.com> 2005-07-04 news:dabjsi$16h8$1@digitaldaemon.com
author thomask
date Thu, 07 Jul 2005 17:04:51 +0000
parents
children 03b5056496f1
comparison
equal deleted inserted replaced
599:4e81f0907fb9 600:c0ba153df32f
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Ant^2i <Ant^2i_member@pathlink.com>
6 // @date@ 2005-07-04
7 // @uri@ news:dabjsi$16h8$1@digitaldaemon.com
8 // @desc@ toobj.c:191: virtual void ClassDeclaration::toObjFile(): Assertion `!scope' failed
9
10 module dstress.run.b.bug_toobj_191_B;
11
12 class Class(T){
13 struct Struct{
14 T t;
15 }
16
17 Struct s;
18 }
19
20 int main(){
21 Class!(int) o=new Class!(int);
22 return 0;
23 }
24