Files
kotlin-fork/idea/testData/refactoring/extractFunction/controlFlow/initializer/propertyWithInitializerAndUnusedVars.kt
T

9 lines
131 B
Kotlin
Vendored

// SIBLING:
fun foo() {
<selection>val a: Int
val b = 10
val c: Int = 1
</selection>
a = 2
println(a + b)
}