comparison run/t/tuple_13_B.d @ 1324:a16119ef8f21

[Issue 756] IFTI for tuples only works if tuple parameter is last <kamm@incasoftware.de> 2006-12-27 http://d.puremagic.com/issues/show_bug.cgi?id=756
author thomask
date Mon, 01 Jan 2007 16:24:24 +0000
parents
children
comparison
equal deleted inserted replaced
1323:2ff35944af8e 1324:a16119ef8f21
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ <kamm@incasoftware.de>
6 // @date@ 2006-12-27
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=756
8 // @desc@ [Issue 756] IFTI for tuples only works if tuple parameter is last
9
10 module dstress.run.t.tuple_13_B;
11
12 void foo(U...)(U u, int t) {
13 }
14
15 int main(){
16 foo(1, 2, 3);
17 return 0;
18 }