view nocompile/a/alias_36_D.d @ 1561:24fcb78d93f6

r8714@birke: tk | 2007-09-29 23:27:16 +0200 [Issue 1539] X86 inline assembler fails to recognize when the branch address outside range <grahamc001uk@yahoo.co.uk> 2007-09-28 http://d.puremagic.com/issues/show_bug.cgi?id=1539
author thomask
date Sun, 30 Sep 2007 09:43:24 +0000
parents 81222734adf3
children
line wrap: on
line source

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

// @author@	<h3r3tic@mat.uni.torun.pl>
// @date@	2006-05-23
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=153

// __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);
}