Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
completion
/
fieldReassignment.after.py
blob: 0f4a09fa6f5dd4207abc22567f36ee7d4fcb9bc6 [
file
] [
log
] [
blame
]
class
C1
(
object
):
def
method1
(
self
):
pass
class
Test
(
object
):
def
__init__
(
self
,
x
):
self
.
x
=
x
self
.
x
=
C1
()
self
.
x
.
method1
()