Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0563.cs
1 // CS0563: One of the parameters of a binary operator must be the containing type
2 // Line: 4
3 class X {
4         public static int operator + (int a, int b)
5         {
6         }
7 }