view run/t/tuple_02_A.d @ 1609:3c803614a8fb

Add a few missing abstracts.
author Christian Kamm <kamm incasoftware de>
date Sun, 26 Apr 2009 13:38:23 +0200
parents daef239f37cf
children
line wrap: on
line source

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

// @author@	Don Clugston <clugdbug@yahoo.com.au>
// @date@	2006-11-06
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=484
// @desc@	[Issue 484] New: Compiler segfault with template variadic used as a template alias.

module dstress.run.t.tuple_02_A;

int g(alias B)(){
	return B * 2;
}

int f(A...)(A a){
	return g!(a) + 1;
}

int main(){
	if(f(4) != 9){
		assert(0);
	}
	return 0;
}