comparison compile/b/bug_20050510_C1.d @ 546:f0f1f142bf6d

cross-module multiply nested template instantiation with inline function from inside function Burton Radons <burton-radons@smocky.com> 2005-05-10 news:d5s3cd$7tn$1@digitaldaemon.com
author thomask
date Thu, 19 May 2005 07:12:07 +0000
parents
children b8c0195059d9
comparison
equal deleted inserted replaced
545:7b5efee9d724 546:f0f1f142bf6d
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Burton Radons <burton-radons@smocky.com>
6 // @date@ 2005-05-10
7 // @uri@ news:d5s3cd$7tn$1@digitaldaemon.com
8
9 module /+dstress.+/compile.b.bug_20050510_C1;
10
11 struct TC(T){
12 void method(){
13 void inline_function(){
14 }
15 }
16 }
17
18 struct TA(T){
19 alias TC!(T) tc_instance;
20 }
21