New test.
[mono.git] / mcs / errors / cs0161.cs
1 // cs0161.cs: `A.Main()': not all code paths return a value
2 // Line: 
3
4 class A
5 {
6         public static int Main () 
7         {
8         }
9 }