Files
kotlin-fork/idea/testData/formatter/WhenBlockBlankLines.kt
T
Dmitry Jemerov 6a96ade02c Options for blank lines between 'when' branches
#KT-18607 Fixed
2017-07-07 16:48:29 +02:00

12 lines
180 B
Kotlin
Vendored

fun f(x: Int) = when(x) {
1 -> "Foo"
2 -> "Bar"
3 -> {
"Foo"
}
4 -> "Bar"
else -> "Xyzzy"
}
// SET_INT: BLANK_LINES_AROUND_BLOCK_WHEN_BRANCHES = 1