view compile/t/tuple_05_B.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents 70b7f985fe9f
children
line wrap: on
line source

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

// @author@	Michael Arntzenius <daekharel@gmail.com>
// @date@	2006-11-21
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=582
// @desc@	[Issue 582] New: Cannot slice mixed tuples

module dstress.compile.t.tuple_05_B;

template Tuple(T ...) {
	const Tuple = T[1 .. 3].length;
}

static assert(Tuple!('a', 'b', 'c', float) == 2);