comparison run/function_01.d @ 0:3269e4627918

init dstress
author svnowner
date Sat, 25 Sep 2004 22:33:30 +0000
parents
children f87ba6507260
comparison
equal deleted inserted replaced
-1:000000000000 0:3269e4627918
1 void test(){
2 int function (int i) x = function int (int i){ return i++;};
3 int function (int i) y = function int (int i){ return i--;};
4 }
5
6 int main(){
7 test();
8 return 0;
9 }