2007-10-17 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / errors / cs0028.cs
1 // cs0028.cs: `T.Main(int)' has the wrong signature to be an entry point
2 // Line: 8
3 // Compiler options: -warnaserror -warn:4
4
5 class T {
6         public static int Main ()
7         {
8         }
9         public static int Main (int foo)
10         {
11         }
12 }
13