diff run/function_01.d @ 0:3269e4627918

init dstress
author svnowner
date Sat, 25 Sep 2004 22:33:30 +0000
parents
children f87ba6507260
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/function_01.d	Sat Sep 25 22:33:30 2004 +0000
@@ -0,0 +1,9 @@
+void test(){
+	int function (int i) x = function int (int i){ return i++;};
+	int function (int i) y = function int (int i){ return i--;};
+}
+
+int main(){
+	test();
+	return 0;
+}