I have a question about destructuring. I'm wonderi...
# announcements
d
I have a question about destructuring. I'm wondering if the following should be possible:
Copy code
class SomeClass(init: () -> Pair<String, Int>) {
    private val a: String
	private val b: Int


    init {
        (a, b) = init()
    }
	
}