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

9 lines
218 B
Kotlin
Vendored

interface I
class <caret>B(
// INFO: {"checked": "true", "toAbstract": "true"}
val s: String,
// INFO: {"checked": "true", "toAbstract": "true"}
val b: Boolean,
val i: Int
) : I