Files
kotlin-fork/idea/testData/intentions/joinDeclarationAndAssignment/usedLocal3.kt
T
2020-09-29 23:58:28 +09:00

8 lines
153 B
Kotlin
Vendored

class Test(height: Int, width: Int) {
private val size: Int = height * width
private val <caret>data: Int
init {
data = size
}
}