Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
resolve
/
ToConstructorInherited.py
blob: 95ade209d1b45afc407dec2c24406e040cb5df64 [
file
] [
log
] [
blame
]
# multi-resolve: to class and to inherited constructor
class
Foo
:
def
__init__
(
self
):
pass
class
Bar
(
Foo
):
pass
Bar
()
#<ref>