2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0102.cs
blob903027d8e94ec81b5cd2226f6c8cb110a9d7e9be
1 // cs0102.cs: The type `SampleClass' already contains a definition for `set_Item'
2 // Line: 6
4 public class SampleClass {
5 protected int set_Item;
6 public int this[int index] { set {} }