Copied remotely
[mono.git] / mcs / errors / cs0562.cs
1 // cs0562.cs: The parameter of a unary 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