[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs1556.cs
1 // CS1555: `MainTest' specified for Main method must be a valid class or struct
2 // Line: 0
3 // Compiler options: -main:MainTest
4
5 public interface MainTest
6 {
7         void Main (string[] args);
8 }