f20a6b7fe1
#KT-21799 Fixed
8 lines
187 B
Kotlin
Vendored
8 lines
187 B
Kotlin
Vendored
// "Change function signature to 'fun Int.foo(a: String)'" "true"
|
|
abstract class C {
|
|
abstract fun Int.foo(a: String)
|
|
}
|
|
|
|
class B : C() {
|
|
<caret>override fun String.foo(a: Int) {}
|
|
} |