view run/bug_20050407_03.d @ 1515:516ef5730874

[Issue 1108] Indexing an int[] not evaluatable at compile time Reiner Pope <reiner.pope@gmail.com> 2007-04-07 http://d.puremagic.com/issues/show_bug.cgi?id=1108
author thomask
date Wed, 25 Apr 2007 17:47:00 +0000
parents b8c0195059d9
children ec5e144583ea
line wrap: on
line source

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

// @author@	David Medlock <amedlock@nospam.org>
// @date@	2005-04-07
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3538

module dstress.run.bug_20050407_03;

class VecStack{
	void quat_to_matrix(double[16]M){
		M[]= 0;
	}
}

int main(){
	VecStack vm = new VecStack;
	double[16] M;
	vm.quat_to_matrix(M);
	assert(!(vm is null));
	return 0;
}