view nocompile/version_30.d @ 1622:d402aa53926c

Add test for bug 3092 written by Manuel K?nig
author Leandro Lucarella <llucax@gmail.com>
date Tue, 19 Oct 2010 19:18:23 -0300
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!();
}