view compile/b/bug_20050510_B1.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
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Burton Radons <burton-radons@smocky.com>
// @date@	2005-05-10
// @uri@	news:d5s3cd$7tn$1@digitaldaemon.com

module /+dstress.+/compile.b.bug_20050510_B1;

struct TC(T){
	void method(){
	}
}

template TB(T){
	alias TC!(T) tc_instance;
}

struct TA(T){
	mixin TB!(T);
}