Files
kotlin/idea/testData/codeInsight/outOfBlock/InFunInMultiDeclaration.kt
2019-10-30 21:41:29 +01:00

9 lines
127 B
Kotlin
Vendored

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