Files
kotlin/idea/testData/refactoring/extractFunction/basic/extractBlockContent.kt.after
Alexey Sedunov febf725e85 Extract Function: Extract block contents
#KT-8235 Fixed
2015-06-27 13:58:07 +03:00

9 lines
127 B
Plaintext
Vendored

fun test() {
if (true) {
__dummyTestFun__()
}
}
private fun __dummyTestFun__() {
println("Hello world!")
}