Files
kotlin/idea/testData/refactoring/extractFunction/basic/noConflictWithInnerFunction.kt

8 lines
144 B
Kotlin
Vendored

fun foo() {
val a = 1
// SIBLING:
if (<selection>a > 0</selection>) {
fun b(): Int { return 0 }
println(b())
}
}