view run/t/tuple_11_C.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 630c47fdf443
children
line wrap: on
line source

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

// @author@	david <davidl@126.com>
// @date@	2006-12-13
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=684
// @desc@	[Issue 684] dmd should compile this

module dstress.run.t.tuple_11_C;

uint t_length = uint.max;
uint m_length = uint.max;

class X{
	static template a(T...){
		template a(M...){
			void a(M m){
				t_length = T.length;
				m_length = M.length;
			}
		}
	}
}

int main(){
	auto x = new X();
	x.a!()(1);

	if(t_length != 0){
		assert(0);
	}
	if(m_length != 1){
		assert(0);
	}

	return 0;
}