Files
kotlin-fork/idea/testData/inspectionsLocal/trailingComma/destructuringDeclarations.kt
T
2020-05-27 11:24:09 +00:00

8 lines
140 B
Kotlin
Vendored

// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas
// FIX: Add line break
// DISABLE-ERRORS
fun a() {
val (a,
b,<caret>) = 1 to 2
}