mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
11 lines
127 B
Python
11 lines
127 B
Python
|
|
class OK:
|
|
|
|
def __eq__(self, other):
|
|
return False
|
|
|
|
class NotOK2:
|
|
|
|
def __ne__(self, other):
|
|
return True
|