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

10 lines
180 B
Kotlin
Vendored

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