c78fd4aaca
#KT-39131 Fixed
10 lines
157 B
Plaintext
Vendored
10 lines
157 B
Plaintext
Vendored
// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas
|
|
// FIX: Add trailing comma
|
|
// DISABLE-ERRORS
|
|
|
|
fun a() {
|
|
b(
|
|
1, 3, 2424,
|
|
awdawd,
|
|
)
|
|
} |