2004-06-09 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs0559.cs
1 // cs0559.cs: The parameter and return type for ++ or \97 operator must be the containing type\r
2 // Line: 5\r
3 \r
4 class SampleClass {\r
5         public static SampleClass operator ++ (int value) {\r
6                 return new SampleClass();\r
7         }\r
8 }\r