4d9b19da82
#KT-18539 Fixed
12 lines
289 B
Plaintext
Vendored
12 lines
289 B
Plaintext
Vendored
// "Create member function 'Foo.component3'" "true"
|
|
class Foo<T> {
|
|
operator fun component1(): Int { return 0 }
|
|
operator fun component2(): Int { return 0 }
|
|
operator fun component3(): Any {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|
|
fun foo() {
|
|
val (a, b, c) = Foo<Int>()
|
|
}
|