2684974a33
#KT-27847 Fixed
12 lines
165 B
Kotlin
Vendored
12 lines
165 B
Kotlin
Vendored
fun foo() =
|
|
2
|
|
|
|
data class A(val a: Int, val b: Int)
|
|
|
|
fun test() {
|
|
val (a, b) =
|
|
A()
|
|
}
|
|
|
|
// SET_TRUE: CONTINUATION_INDENT_FOR_EXPRESSION_BODIES
|