2002-06-25 Dick Porter <dick@ximian.com>
[mono.git] / mcs / errors / cs0028.cs
1 // cs0028: has the wrong signature to be an entry point
2 // Line: 8
3
4 class T {
5         public static int Main ()
6         {
7         }
8         public static int Main (int foo)
9         {
10         }
11 }
12