63ee723928
Add case for line break between argument and comma #KT-34744
9 lines
185 B
Kotlin
Vendored
9 lines
185 B
Kotlin
Vendored
// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas
|
|
// FIX: Fix comma position
|
|
|
|
val x = {
|
|
x: Comparable<Comparable<Number>>,
|
|
y: String
|
|
<caret>,->
|
|
val a = 42
|
|
} |