view nocompile/a/assert_14_F.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 3446efc90696
children
line wrap: on
line source

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

// @author@	Don Clugston <dac@nospam.com.au>
// @date@	2006-02-22
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6340

// __DSTRESS_ELINE__ 16

module dstress.nocompile.a.assert_14_F;

template cat(){
	static if(1){
		static if(1){
			static assert(0);
			const int cat = 3;
		}
	}
}

static assert(cat!() == 3);