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

10 lines
157 B
Plaintext
Vendored

// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas
// FIX: Add trailing comma
// DISABLE-ERRORS
fun a() {
b(
1, 3, 2424,
awdawd,
)
}