[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0106-3.cs
1 // CS0106: The modifier `static' is not valid for this item
2 // Line: 6
3
4 class Data
5 {
6         public static delegate int Count ();
7 }