Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/component/createComponentFromUsage2.kt
2016-07-20 15:39:19 +03:00

9 lines
225 B
Kotlin
Vendored

// "Create member function 'Foo.component3'" "true"
class Foo<T> {
operator fun component1(): Int { return 0 }
operator fun component2(): Int { return 0 }
}
fun foo() {
val (a, b, c: String) = Foo<caret><Int>()
}