comparison nocompile/s/string_postfix_06_F.d @ 1560:36bedfa079e6

D1 -> D2 : 2/N
author thomask
date Sun, 19 Aug 2007 19:15:01 +0000
parents 0ea4c218a3ee
children
comparison
equal deleted inserted replaced
1559:ec5e144583ea 1560:36bedfa079e6
4 4
5 // __DSTRESS_ELINE__ 19 5 // __DSTRESS_ELINE__ 19
6 6
7 module dstress.nocompile.s.string_postfix_06_F; 7 module dstress.nocompile.s.string_postfix_06_F;
8 8
9 void test(char[] a){ 9 void test(string a){
10 } 10 }
11 11
12 void test(wchar[] a){ 12 void test(wstring a){
13 } 13 }
14 14
15 void test(dchar[] a){ 15 void test(dstring a){
16 } 16 }
17 17
18 void main(){ 18 void main(){
19 test("a"w "b"d); 19 test("a"w "b"d);
20 } 20 }