[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs1547-4.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 5
3
4 class C {
5         public const void val = null;
6 }