mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
14 lines
157 B
Python
14 lines
157 B
Python
|
|
|
|
class C(object):
|
|
|
|
def __init__(self, a=17):
|
|
self.a = a
|
|
|
|
def foo(self, other):
|
|
self.a
|
|
other.a
|
|
|
|
C().foo(C())
|
|
C().foo(C(100))
|