diff nocompile/bug_20041103_C.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents 52c9e86b6486
children
line wrap: on
line diff
--- a/nocompile/bug_20041103_C.d	Mon May 07 05:19:35 2007 +0000
+++ b/nocompile/bug_20041103_C.d	Mon May 07 05:19:57 2007 +0000
@@ -11,7 +11,7 @@
 
 module dstress.nocompile.bug_20041103_C;
 
-char rot13_c(inout char ret){
+char rot13_c(ref char ret){
 	if(ret > 'A'-1 && ret < 'N'){
 		ret += 13;
 	}else if(ret > 'M' && ret < 'Z'+1){