dirk.dittert
class SomeClass(init: () -> Pair<String, Int>) { private val a: String private val b: Int init { (a, b) = init() } }