[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0102-9.cs
1 // CS0102: The type `SampleClass' already contains a definition for `EE'
2 // Line: 6
3
4 public class SampleClass {
5         public delegate void EE ();
6         public event EE EE;
7 }