// "Create member function 'Foo.component3'" "true" class Foo { operator fun component1(): Int { return 0 } operator fun component2(): Int { return 0 } operator fun component3(): String { TODO("Not yet implemented") } } fun foo() { val (a, b, c: String) = Foo() }