Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2003-07-25 21:11:19 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2003-07-25 21:11:19 +0400
commit2da89001e588da565a970320ed1d34c0ab199a14 (patch)
treefde9288595716c0bd0a6f6924514a8fd253973cc /mcs/errors/cs0592-3.cs
parent144012324e2e7bcc13e68f9b052cc584433490dd (diff)
Oops - we need a main
svn path=/trunk/mcs/; revision=16676
Diffstat (limited to 'mcs/errors/cs0592-3.cs')
-rw-r--r--mcs/errors/cs0592-3.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/errors/cs0592-3.cs b/mcs/errors/cs0592-3.cs
index 39839343e85..48f7900c79a 100644
--- a/mcs/errors/cs0592-3.cs
+++ b/mcs/errors/cs0592-3.cs
@@ -4,6 +4,7 @@
using System.Runtime.CompilerServices;
[IndexerName("XXX")]
-class A
-{
+class A {
+ public static void Main () { }
+
}