Files
kotlin-fork/idea/testData/refactoring/introduceVariable/NoNewLinesInBetweenNoBraces.kt
T
2014-12-25 17:12:16 +03:00

6 lines
98 B
Kotlin
Vendored

fun bar(): Int = 1
fun baz()
fun foo() {
if (true) <selection>bar()</selection>; else baz()
}