Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs1534-3.cs
1 // CS1534: Overloaded binary operator `+' takes two parameters
2 // Line: 6
3
4 class C
5 {
6         public static C operator +()
7         {
8                 return null;
9         }
10 }