Files
kotlin/idea/testData/codeInsight/outOfBlock/InFunInMultiDeclaration.kt

9 lines
108 B
Kotlin
Vendored

// FALSE
data class Test(val a : Int, val b : Int)
fun a() {
val (test, <caret>other) = Test(11, 12)
}