Files
kotlin-fork/idea/testData/quickfix/override/beforeParameterNameChangedAmbiguousRename.kt
T
Alexander Udalov 0b64f028b6 Rename jet -> kotlin in idea: quickfixes
org.jetbrains.jet.plugin.quickfix -> org.jetbrains.kotlin.idea.quickfix
2015-01-13 01:14:36 +03:00

17 lines
318 B
Kotlin

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