Files
kotlin-fork/idea/testData/quickfix/override/parameterNameChangedAmbiguousRename.kt
T
2015-05-13 16:13:13 +02:00

17 lines
322 B
Kotlin
Vendored

// "class org.jetbrains.kotlin.idea.quickfix.RenameParameterToMatchOverriddenMethodFix" "false"
abstract class A {
abstract fun foo(arg : Int) : Int;
}
interface X {
fun foo(agr: Int) : Int;
}
class B : A(), X {
override fun foo(arg<caret>: Int) : Int {
val x = arg + arg
return arg
}
}