Files
kotlin-fork/idea/testData/intentions/convertSecondaryConstructorToPrimary/useParam.kt
T
2016-09-30 16:39:24 +03:00

7 lines
92 B
Kotlin
Vendored

class UseParam {
constructor<caret>(x: Int) {
this.y = x
}
val y: Int
}