changeset 1424:73f829b7be2f

[Issue 968] ICE on compile-time execution Frits van Bommel <fvbommel@wxs.nl> 2007-02-15 http://d.puremagic.com/issues/show_bug.cgi?id=968
author thomask
date Sun, 11 Mar 2007 11:20:06 +0000
parents 49ae61a333dd
children 10fb8b4eeae3
files run/i/interpret_04_A.d
diffstat 1 files changed, 22 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/interpret_04_A.d	Sun Mar 11 11:20:06 2007 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Frits van Bommel <fvbommel@wxs.nl>
+// @date@	2007-02-15
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=968
+// @desc@	[Issue 968] ICE on compile-time execution
+
+module dstress.run.i.interpret_04_A;
+
+real test(){
+	return 0.0;
+}
+
+int main(){
+	static x = test();
+	if(0.0 == x){
+		return 0;
+	}
+	assert(0);
+}