view nocompile/t/tuple_03_B.d @ 1518:5b8f89bc1b52

fixed typo
author thomask
date Fri, 27 Apr 2007 17:21:55 +0000
parents daef239f37cf
children
line wrap: on
line source

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

// @author@	Bruno Medeiros <brunodomedeiros+bugz@gmail.com>
// @date@	2006-11-18
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=557
// @desc@	[Issue 557] New: ICE returning a tuple from a function (Assertion failure: '0' on line 694 in file 'glue.c')

// __DSTRESS_ELINE__ 20

module dstress.nocompile.t.tuple_03_B;

template Tuple(T...){
	alias T X;
}

alias Tuple!(int,int) TType;

TType.X foo(){
	return TType.X;
}