Files
kotlin-fork/idea/testData/intentions/removeBraces/ifInDotQualifiedExpression.kt
T
2018-01-29 14:32:36 +03:00

7 lines
153 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(b: Boolean) {
val list1 = mutableListOf(1)
val list2 = mutableListOf(2)
if (b) <caret>{list1} else {list2}.add(3)
}