Files
kotlin/idea/testData/refactoring/extractFunction/controlFlow/outputValues/valuesUsedInNestedBlock.kt.after
2015-01-12 22:55:33 +03:00

13 lines
167 B
Plaintext
Vendored

class T(val n: Int)
// SIBLING:
fun foo() {
__dummyTestFun__()
}
private fun __dummyTestFun__() {
if (true) {
val k = 1
T().n + k + 1
}
}