[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0161.cs
1 // CS0161: `A.Main()': not all code paths return a value
2 // Line: 6
3
4 class A
5 {
6         public static int Main () 
7         {
8         }
9 }