view run/v/variadic_argument_11_B.d @ 765:4698f4070a77

John C <johnch_atms@hotmail.com> 2005-12-04 news:dmus5e$11jp$1@digitaldaemon.com
author thomask
date Sun, 04 Dec 2005 14:39:06 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	John C <johnch_atms@hotmail.com>
// @date@	2005-12-04
// @uri@	news:dmus5e$11jp$1@digitaldaemon.com

module dstress.run.v.variadic_argument_11_B;

class Testing {
    this(int a, ...){
    }
}

int main(){
	Testing test = new Testing(1, 2, 3);
	assert(test);
	return 0;
}