diff run/double_quoted_string_18.d @ 1560:36bedfa079e6

D1 -> D2 : 2/N
author thomask
date Sun, 19 Aug 2007 19:15:01 +0000
parents f87ba6507260
children
line wrap: on
line diff
--- a/run/double_quoted_string_18.d	Sun Aug 19 19:11:54 2007 +0000
+++ b/run/double_quoted_string_18.d	Sun Aug 19 19:15:01 2007 +0000
@@ -2,11 +2,11 @@
 // $Date$
 // $Author$
 
-module dstress.run.double_quoted_string_17;
+module dstress.run.double_quoted_string_18;
 
 int main(){
-	char[] a= r"a" x"62" \x63;
-	char[] b= \u0061 "b" \U00000063;
+	string a= r"a" x"62" \x63;
+	string b= \u0061 "b" \U00000063;
 	assert(a==b);
 	return 0;
 }