2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0562.cs
blobdc57cfb3108e8f7ff1d3bceb86c670ebc1f54279
1 // CS0562: The parameter type of a unary operator must be the containing type
2 // Line: 7
4 class SampleClass {
5 public static SampleClass operator - (int value)
7 return new SampleClass();