view run/t/typeof_08_A.d @ 1513:45c339264b57

[Issue 1125] Segfault using tuple in asm code, when size not specified Don Clugston <clugdbug@yahoo.com.au> 2007-04-11 http://d.puremagic.com/issues/show_bug.cgi?id=1125
author thomask
date Mon, 23 Apr 2007 18:09:16 +0000
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	<oskar.linde@gmail.com>
// @date@	2005-03-16
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6684

module dstress.run.t.typeof_08_A;

template declare(X){
	X declare;
}

typeof(declare!(typeof(""w))[0 .. length]) y;

int main(){
	static if(!is(typeof(y) == wchar[])){
		static assert(0);
	}

	if(y.length != 0){
		assert(0);
	}

	return 0;
}