Big change in quickfix tests: no stupid test data format with "before" and "after" file prefixes
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// "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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user