Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
resolve
/
ToConstructorInherited.py
blob: 95ade209d1b45afc407dec2c24406e040cb5df64 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
# multi-resolve: to class and to inherited constructor
2
class
Foo
:
3
def
__init__
(
self
):
4
pass
5
6
class
Bar
(
Foo
):
7
pass
8
9
Bar
()
10
#<ref>