This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0563.cs
1 // cs0563.cs: One of the parameters to the binary operator should be the containing type
2 // Line: 4
3 class X {
4         public static int operator + (int a, int b)
5         {
6         }
7 }