do not assert on ToString result
[mcs.git] / errors / cs0102-7.cs
bloba381659cbdb33b6861d3ed1883ecb2583489ac87
1 // cs0102-7.cs: 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 }