copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs1520.cs
1 //
2 // cs1520: Class, struct or interface method must have a return type
3 // Line: 9
4
5 class test {
6
7         // To fix add a return type
8         
9         public static Main (string[] args)
10         {
11         }
12 }