Updated with review feedback.
[mono.git] / mcs / errors / cs0216-5.cs
1 // CS0216: The operator `Test.operator ==(Test, bool)' requires a matching operator `!=' to also be defined
2 // Line: 10
3
4 partial class Test
5 {
6 }
7
8 partial class Test
9 {
10         public static bool operator == (Test lhs, bool rhs)
11         {
12                 return false;
13         }
14 }
15