comparison undefined/class_19_B.d @ 724:5c568eb016c0

unclear nested class documentation
author thomask
date Fri, 28 Oct 2005 21:33:48 +0000
parents
children
comparison
equal deleted inserted replaced
723:9a2158064fdd 724:5c568eb016c0
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ dennis luehring <dl.soluz@gmx.net>
6 // @date@ 2005-10-26
7 // @uri@ news:djo1km$280i$1@digitaldaemon.com
8
9 module dstress.undefined.class_19_B;
10
11 class Outer{
12 this(){
13 }
14
15 class Inner{
16 this(){
17 }
18 }
19 }
20
21 int main(){
22 Outer o = new Outer;
23 Outer.Inner i = new o.Inner();
24 assert(i);
25
26 return 0;
27 }