blob: af528374cc1a384726513217af577b0af051b138 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// CS0216: The operator `Test.operator ==(Test, bool)' requires a matching operator `!=' to also be defined
// Line: 10
partial class Test
{
}
partial class Test
{
public static bool operator == (Test lhs, bool rhs)
{
return false;
}
}
|