comparison addon/forward_reference_03_B.d @ 220:8fa24d6682cd

forward references Chris Newton <redshodan@dot.gmail.dot.dooot.com> 2004-12-29 news:cqv5vu$1l76$1@digitaldaemon.com nntp://digitalmars.com/digitalmars.D.bugs/2621
author thomask
date Thu, 30 Dec 2004 11:03:48 +0000
parents
children
comparison
equal deleted inserted replaced
219:249516e487f9 220:8fa24d6682cd
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Chris Newton <redshodan@dot.gmail.dot.dooot.com>
6 // @date@ 2004-12-29
7 // @uri@ news:cqv5vu$1l76$1@digitaldaemon.com
8 // @url@ nntp://digitalmars.com/digitalmars.D.bugs/2621
9
10 module addon.forward_reference_03_B;
11
12 import addon.forward_reference_03_A;
13
14 class MyClassB{
15 typedef int Foo;
16
17 MyClassA test3a;
18 }
19