changeset 416:b7efa2ad5425

fixed void/int typo
author thomask
date Sat, 09 Apr 2005 19:22:15 +0000
parents e9b425f5e887
children 30f510ddc33a
files run/overload_20.d run/overload_21.d run/overload_22.d
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/run/overload_20.d	Sat Apr 09 09:08:25 2005 +0000
+++ b/run/overload_20.d	Sat Apr 09 19:22:15 2005 +0000
@@ -13,7 +13,7 @@
 		return 0;
 	}
 
-	static void init (long y) {
+	static int init (long y) {
 		return 1;
 	}
 }
--- a/run/overload_21.d	Sat Apr 09 09:08:25 2005 +0000
+++ b/run/overload_21.d	Sat Apr 09 19:22:15 2005 +0000
@@ -13,7 +13,7 @@
 		return 0;
 	}
 
-	static void init (long y) {
+	static int init (long y) {
 		return 1;
 	}
 }
--- a/run/overload_22.d	Sat Apr 09 09:08:25 2005 +0000
+++ b/run/overload_22.d	Sat Apr 09 19:22:15 2005 +0000
@@ -12,7 +12,7 @@
 	return 0;
 }
 
-static void init (long y) {
+static int init (long y) {
 	return 1;
 }