2003-01-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[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 }