Remove redundant receiver in "Change function signature" quick fix

So #KT-12298 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-05-24 11:04:03 +03:00
committed by Mikhail Glukhikh
parent 0cb907d637
commit ddf647ae96
4 changed files with 25 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Change function signature to 'fun x(s: String)'" "true"
open class A {
open fun x(s: String) {}
}
class B : A() {
<caret>override fun x(s: String) {}
}