Files
kotlin-fork/idea/testData/inspectionsLocal/constantConditionIf/endWithElseIfNoBraces.kt.after
T

10 lines
108 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(x: Int) {}
fun bar(s: String?) {
if (s == null) {
1
}
else 2
}