comparison run/function_01.d @ 374:f87ba6507260

added missing meta-data
author thomask
date Thu, 31 Mar 2005 09:01:33 +0000
parents 3269e4627918
children
comparison
equal deleted inserted replaced
373:177ce8d13eac 374:f87ba6507260
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 module dstress.run.function_01;
6
1 void test(){ 7 void test(){
2 int function (int i) x = function int (int i){ return i++;}; 8 int function (int i) x = function int (int i){ return i++;};
3 int function (int i) y = function int (int i){ return i--;}; 9 int function (int i) y = function int (int i){ return i--;};
4 } 10 }
5 11