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

10 lines
192 B
Plaintext
Vendored

// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas
// FIX: Fix comma position
// DISABLE-ERRORS
fun a() {
val a = {
(
a, b, // awd/**/
), c, -> }
}