Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0562.cs
1 // CS0562: The parameter type of a unary operator must be the containing type
2 // Line: 7
3
4 class SampleClass {
5         public static SampleClass operator - (int value)
6         {
7                 return new SampleClass();
8         }
9 }