view nocompile/t/tuple_03_D.d @ 1239:ee2da7e06729

[Issue 557] New: ICE returning a tuple from a function (Assertion failure: '0' on line 694 in file 'glue.c') Bruno Medeiros <brunodomedeiros+bugz@gmail.com> 2006-11-18 news:bug-557-3@http.d.puremagic.com/issues/
author thomask
date Sat, 25 Nov 2006 17:53:13 +0000
parents
children daef239f37cf
line wrap: on
line source

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

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

// __DSTRESS_ELINE__ 18

module dstress.nocompile.t.tuple_03_D;

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

Tuple!(int,int) foo(){
	assert(0);
}