a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
244 B
C#
16 lines
244 B
C#
// 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;
|
|
}
|
|
}
|
|
|