changeset 401:50c0a07b95bd

bug-20050407 David Medlock <amedlock@nospam.org> 2005-04-07 news:d33h85$2bem$1@digitaldaemon.com
author thomask
date Thu, 07 Apr 2005 18:24:25 +0000
parents fa85aed6d38a
children a56ff70d7187
files run/bug_20050407_01.d run/bug_20050407_02.d run/bug_20050407_03.d
diffstat 3 files changed, 77 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/bug_20050407_01.d	Thu Apr 07 18:24:25 2005 +0000
@@ -0,0 +1,27 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	David Medlock <amedlock@nospam.org>
+// @date@	2005-04-07
+// @uri@	news:d33h85$2bem$1@digitaldaemon.com
+
+module dstress.run.bug_20050407_01;
+
+class VecStack{
+	void quat_to_matrix(double[16]M){
+		M[]= 0;
+	}
+
+	void euler_to_matrix(double[16]M){
+		this.quat_to_matrix(M);
+	}
+}
+
+int main(){
+	VecStack vm = new VecStack;
+	double[16] M;
+	vm.euler_to_matrix(M);
+	assert(vm!==null);
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/bug_20050407_02.d	Thu Apr 07 18:24:25 2005 +0000
@@ -0,0 +1,27 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	David Medlock <amedlock@nospam.org>
+// @date@	2005-04-07
+// @uri@	news:d33h85$2bem$1@digitaldaemon.com
+
+module dstress.run.bug_20050407_02;
+
+class VecStack{
+	void quat_to_matrix(double[] M){
+		M[]= 0;
+	}
+
+	void euler_to_matrix(double[] M){
+		this.quat_to_matrix(M);
+	}
+}
+
+int main(){
+	VecStack vm = new VecStack;
+	double[] M;
+	vm.euler_to_matrix(M);
+	assert(vm!==null);
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/bug_20050407_03.d	Thu Apr 07 18:24:25 2005 +0000
@@ -0,0 +1,23 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	David Medlock <amedlock@nospam.org>
+// @date@	2005-04-07
+// @uri@	news:d33h85$2bem$1@digitaldaemon.com
+
+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!==null);
+	return 0;
+}