Files
kotlin-fork/idea/testData/refactoring/pullUp/k2k/constructorParametersWithDefaultValue2.kt
T

8 lines
123 B
Kotlin
Vendored

open class A(n: Int, s: String = "") {
}
class <caret>B(
// INFO: {"checked": "true"}
val i: Int
) : A(1)