Sign in
android
/
platform
/
tools
/
idea
/
0344e5a53350b4034fea4fa275fd25a87107b334
/
.
/
python
/
testData
/
resolve
/
SuperPy3k.py
blob: dcb2185b1d562b118d9365afacb1c2b0f388cace [
file
] [
log
] [
blame
]
class
A
(
object
):
def
foo
(
self
):
print
"foo"
class
B
(
A
):
def
foo
(
self
):
super
().
foo
()
# <ref>
B
().
foo
()