Files
codeql/python/ql/test/library-tests/PointsTo/new/code/m_attributes.py
2018-11-19 15:15:54 +00:00

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))