Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
override
/
nothingToOverride
/
addParameterTwoSupertraits.kt
blob: 15132d071871ef96d78213c84cc3ccf4d5da5417 [
file
] [
log
] [
blame
]
// "Change function signature to 'fun f(a: Int)'" "true"
interface
A
{
fun f
(
a
:
Int
)
}
interface
B
:
A
{
}
class
C
:
B
{
<caret>
override
fun f
()
{}
}