5a3c6def8f
#KT-34270 Fixed
8 lines
153 B
Kotlin
Vendored
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
|
|
}
|
|
} |