view nocompile/a/alias_36_D.d @ 1022:db52d0fa9528

Assertion failure :: template.c:2111 <h3r3tic@mat.uni.torun.pl> 2006-05-23 news:bug-153-3@http.d.puremagic.com/bugzilla/
author thomask
date Wed, 24 May 2006 16:23:25 +0000
parents
children 81222734adf3
line wrap: on
line source

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

// @author@	<h3r3tic@mat.uni.torun.pl>
// @date@	2006-05-23
// @uri@	news:bug-153-3@http.d.puremagic.com/bugzilla/

// __DSTRESS_ELINE__ 22

module dstress.nocompile.a.alias_36_D;

template bar(T) {
	void foo(T t) {
	}
}

mixin bar!(long);
mixin bar!(char);

void main() {
	foo!(int);
}