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