Add quick-fix for default parameter value removal #KT-25146 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
a059d50c8f
commit
1b1e503716
@@ -0,0 +1,8 @@
|
||||
// "Remove default parameter value" "true"
|
||||
open class A {
|
||||
open fun foo(x: Int, y: Int) {}
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override fun foo(x : Int /* comment1 */ = /* comment2 */ 1<caret>, y: Int) {}
|
||||
}
|
||||
Reference in New Issue
Block a user