mirror of
https://github.com/github/codeql.git
synced 2025-12-26 13:46:31 +01:00
10 lines
186 B
Python
10 lines
186 B
Python
class NotAContainer(object):
|
|
|
|
def __init__(self, *items):
|
|
self.items = items
|
|
|
|
def main():
|
|
cont = NotAContainer(1, 2, 3)
|
|
if 2 in cont:
|
|
print("2 in container")
|