[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0102-7.cs
blob162652fec9e5ac8d6e12170b9e09557f52c9d610
1 // CS0102: The type `SampleClass' already contains a definition for `set_Item'
2 // Line: 7
4 public class SampleClass {
5 protected const int set_Item = 3;
6 public int Item {
7 set {}
8 }