diff run/s/scope_22_B.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +0200
parents run/a/auto_16_B.d@36bedfa079e6
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/s/scope_22_B.d	Sun Jul 12 16:44:52 2009 +0200
@@ -0,0 +1,33 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	yama <yama_member@pathlink.com>
+// @date@	2006-02-26
+// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6373
+
+// __DSTRESS_DFLAGS__ -version=always
+
+module dstress.run.s.scope_22_B;
+
+class C{
+	char[] toString(){
+		return "hallo bug";
+	}
+}
+
+int main(){
+	version(always){
+		scope C c;
+		c = new C();
+	}
+
+	if(c.toString() != "hallo bug"){
+		assert(0);
+	}
+
+	return 0;
+}
+
+
+