[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0448.cs
blobbe222ef35da337112cc010a2451cef8928321d0d
1 // CS0448: The return type for ++ or -- operator must be the containing type or derived from the containing type
2 // Line: 5
3 class SampleClass {
4 public static int operator ++ (SampleClass value) {
5 return new SampleClass();