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