Files
kotlin-fork/idea/testData/intentions/addBraces/notInsideElseIfBlock.kt
T
Valentin Kipyatkov 9afb0d5f59 KT-12284 "Add braces to else" has too wide range
#KT-12284 Fixed
2016-05-13 17:44:01 +03:00

12 lines
132 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(p: Int) {
if (p == 1) {
}
else if (p == 2) {
bar()<caret>
}
}
fun bar(){}