Files
kotlin-fork/idea/testData/joinLines/removeBraces/IfWithElseBlockInAssignment.kt
T
2017-06-07 13:49:34 +03:00

8 lines
107 B
Kotlin
Vendored

fun test() {
val t = 1
val f = 2
val a: Int
a = if (true) t else {<caret>
f
}
}