Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs1520.cs
1 // CS1520: Class, struct, or interface method must have a return type
2 // Line: 8
3
4 class test {
5
6         // To fix add a return type
7         
8         public static Main (string[] args)
9         {
10         }
11 }