comparison nocompile/i/inout_01.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents b8c0195059d9
children
comparison
equal deleted inserted replaced
1534:345207906be7 1535:20d8ee6523e1
8 8
9 // __DSTRESS_ELINE__ 19 9 // __DSTRESS_ELINE__ 19
10 10
11 module dstress.nocompile.i.inout_01; 11 module dstress.nocompile.i.inout_01;
12 12
13 void test(inout byte i){ 13 void test(ref byte i){
14 i++; 14 i++;
15 } 15 }
16 16
17 void main(){ 17 void main(){
18 short s; 18 short s;