8f57c2f430cd6783a640d2505bb7e33d0eabae9d
[mono.git] / mcs / errors / cs0028-2.cs
1 // cs0028-2.cs: `T.Main()' has the wrong signature to be an entry point
2 // Line: 6
3 // Compiler options: -warnaserror -warn:4
4
5 class T {
6         public static bool Main ()
7         {\r
8             return false;
9         }
10 }
11