view nocompile/bug_20041016_A.d @ 1485:774e02c900da

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 12:03:23 +0000
parents 52c9e86b6486
children
line wrap: on
line source

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

// @author@	Ivan Senji <ivan.senji@public.srce.hr>
// @date@	2004-10-16
// @uri@	news:ckpj76$2r3m$1@digitaldaemon.com
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2117

module dstress.nocompile.bug_20041016_A;

class Conversion(T,U){
	typedef char Small;
	class Big{
		char[2] dummy;
	}
	static Small Test(U u);
	static Big Test(...);
	static T MakeT();
	enum {
		exists = (Test(MakeT())).sizeof == (Small).sizeof
	}
}

void variadicDummy(...){
}

int main (){
	variadicDummy(Conversion!(double,int).exists);
	return 0;
}