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