Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0559.cs
1 // CS0559: The parameter type for ++ or -- operator must be the containing type
2 // Line: 5
3
4 class SampleClass {
5         public static SampleClass operator ++ (int value) {
6                 return new SampleClass();
7         }
8 }