9 lines
146 B
Kotlin
Vendored
9 lines
146 B
Kotlin
Vendored
// "Change function signature to 'fun f(a: Int)'" "true"
|
|
interface A {
|
|
fun f(a: Int)
|
|
}
|
|
|
|
class B : A {
|
|
public <caret>override fun f() {}
|
|
}
|