2003-02-13 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0161.cs
1 // CS0161: Not all code paths return a value
2 // Line: 
3
4 class A
5 {
6         public static int Main () 
7         {
8         }
9 }