Files
kotlin-fork/idea/testData/refactoring/extractFunction/initializers/properties/nestedInMultiDeclaration.kt.after
T
2015-01-12 22:55:33 +03:00

15 lines
244 B
Plaintext
Vendored

// WITH_RUNTIME
// SIBLING:
fun foo() {
val (a, b) =
if (true) {
__dummyTestFun__()
1 to 2
} else {
2 to 3
}
}
private fun __dummyTestFun__() {
1 + 1
}