Files
kotlin-fork/idea/testData/intentions/addBraces/whenHasBraces.kt
T

9 lines
116 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(a: Int) {
when (a) {
1 -> {
foo(a)<caret>
}
}
}