Files
kotlin-fork/idea/testData/copyPaste/imports/MultiDeclaration.kt
T
Pavel V. Talanov 6f2ed9a5a9 Add JetMultiDeclarationReference
A reference to component* functions
2014-03-06 16:01:02 +04:00

11 lines
128 B
Kotlin

package a
class A() {
}
fun A.component1() = 1
fun A.component2() = 2
<selection>fun f() {
val (a, b) = A()
}</selection>