Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
AddCallSuperPass_after.py
blob: babb366602d4ed5bcb780abdf349b119d690b076 [
file
] [
log
] [
blame
]
class
A
:
def
__init__
(
self
,
c
,
a
=
5
):
pass
class
B
(
A
):
def
__init__
(
self
,
r
,
c
,
b
=
6
):
A
.
__init__
(
self
,
c
)