diff nocompile/bug_mtype_507_B.d @ 240:7aa29e681c0a

bulk offline update
author thomask
date Thu, 20 Jan 2005 19:39:40 +0000
parents
children 7c8580d800ab
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/bug_mtype_507_B.d	Thu Jan 20 19:39:40 2005 +0000
@@ -0,0 +1,21 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
+// @date@	2005-01-19
+
+module dstress.nocompile.bug_mtype_507_B;
+
+struct Struct{
+	int x;
+}
+
+int main(){
+	int i;
+	Struct s;
+	if(s==i){
+		return -1;
+	}
+	return 0;
+}