view nocompile/version_30.d @ 1600:6d193e241564

Allow for tango math in creal tests.
author Christian Kamm <kamm incasoftware de>
date Sun, 04 Jan 2009 22:25:02 +0100
parents ef6398935a43
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Auhtor$

module dstress.nocompile.version_30;

template T(){
	version(A){
		static assert(0);
	}else{
		version=A;
	}
}

void test(){
	mixin T!();
}