* test-326.cs (Main): Set return type to int, not void.
authorRaja R Harinath <harinath@hurrynot.org>
Fri, 3 Dec 2004 12:25:11 +0000 (12:25 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Fri, 3 Dec 2004 12:25:11 +0000 (12:25 -0000)
svn path=/trunk/mcs/; revision=37006

mcs/tests/ChangeLog
mcs/tests/test-326.cs

index 3f2e831f0a7bde2e4ed2a0a5e0a669c99b092a4e..f51bf0692eb769af13ec2be0d74f005cad0001d2 100755 (executable)
@@ -1,3 +1,7 @@
+2004-12-03  Raja R Harinath  <rharinath@novell.com>
+
+       * test-326.cs (Main): Set return type to int, not void.
+
 2004-12-02  Marek Safar <marek.safar@seznam.cz>
 
        * test-325.cs: New test for #70102.
index 5bbed5bae3f91fafbf4a49f781c781a6b94e586f..5bb9a0f525d58976199605ec2a303509f2386dad 100644 (file)
@@ -6,7 +6,7 @@ public delegate double Mapper (int item);
 
 class X
 {
-        static void Main ()
+        static int Main ()
         {
                 Mapper mapper = new Mapper (delegate (int i){
                        return i * 12; });