diff run/o/opCat_16_D.d @ 1560:36bedfa079e6

D1 -> D2 : 2/N
author thomask
date Sun, 19 Aug 2007 19:15:01 +0000
parents b8c0195059d9
children
line wrap: on
line diff
--- a/run/o/opCat_16_D.d	Sun Aug 19 19:11:54 2007 +0000
+++ b/run/o/opCat_16_D.d	Sun Aug 19 19:15:01 2007 +0000
@@ -9,10 +9,10 @@
 module dstress.run.o.opCat_16_D;
 
 int main(){
-	wchar[][] strings;
+	wstring[] strings;
 	strings.length = 1;
 	strings[0] = "Foo";
-	wchar[] test = "Bar";
+	wstring test = "Bar";
 	assert((strings ~ test).length==2);
 	assert((strings ~ test)[0] == "Foo");
 	assert((strings ~ test)[1] == "Bar");