Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
changeSignature
/
NoDefaultValuesInOverridesAfter.kt
blob: 5f6a6c2bda6605036cc7ab914104d59786b7e980 [
file
] [
log
] [
blame
]
interface
T
{
fun foo
(
a
:
Int
=
1
,
b
:
String
=
"2"
)
}
open
class
A
:
T
{
override
fun foo
(
a
:
Int
,
b
:
String
)
{
throw
UnsupportedOperationException
()
}
}
class
B
:
A
()
{
override
fun foo
(
a
:
Int
,
b
:
String
)
{
throw
UnsupportedOperationException
()
}
}