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) {}
}