Browse Source

2002-04-05 Ravi Pratap <[email protected]>

	* test-98.cs : Supply a missing Main.

svn path=/trunk/mcs/; revision=3647
Ravi Pratap M 24 years ago
parent
commit
99321f8ddd
2 changed files with 9 additions and 0 deletions
  1. 4 0
      mcs/tests/ChangeLog
  2. 5 0
      mcs/tests/test-98.cs

+ 4 - 0
mcs/tests/ChangeLog

@@ -2,6 +2,10 @@
 
 	* test-90.cs : Fix bug where we had no class !
 
+	* test-96.cs : Here too !
+
+	* test-98.cs : Supply a missing Main.
+
 2002-03-27  Miguel de Icaza  <[email protected]>
 
 	* test-18.cs: Augment test with the multi-flow try/catch.

+ 5 - 0
mcs/tests/test-98.cs

@@ -10,4 +10,9 @@ class X {
 }
 
 class Y : X {
+
+	public static int Main ()
+	{
+		return 0;
+	}
 }