changeset 352:e31fca2c8852

dangling changes
author thomask
date Tue, 22 Mar 2005 08:59:08 +0000
parents 9cf29a72bdaf
children 0eb25b549476
files run/bug_20041103_C.d run/with_10.d
diffstat 2 files changed, 9 insertions(+), 29 deletions(-) [+]
line wrap: on
line diff
--- a/run/bug_20041103_C.d	Tue Mar 22 08:23:49 2005 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	kinghajj <kinghajj_member@pathlink.com>
-// @date@	2004-10-03
-// @uri@	news:cm98hu$e30$1@digitaldaemon.com
-// @url@	nntp://digitalmars.com/digitalmars.D/12248
-
-module dstress.run.bug_20041103_C;
-
-char rot13_c(inout char ret){
-	if(ret > 'A'-1 && ret < 'N'){
-		ret += 13;
-	}else if(ret > 'M' && ret < 'Z'+1){
-		ret -= 13;
-	}else if(ret > 'a'-1 && ret < 'n'){
-		ret += 13;
-	}else if(ret > 'm' && ret < 'z'+1){
-		ret -= 13;
-	}
-	return ret;
-}
-
-int main(){
-	char c = rot13_c('A');
-	assert(c=='A'+13);
-	return 0;
-}
--- a/run/with_10.d	Tue Mar 22 08:23:49 2005 +0000
+++ b/run/with_10.d	Tue Mar 22 08:59:08 2005 +0000
@@ -1,8 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+module dstress.run.mixin_10;
+
 MyClass dummyThis;
 
 int value=1;
 
 class MyClass{
+
+	this(){}
+
 	int value=2;
 	
 	void test(){