Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/insideIfCondition.kt.after
Alexey Sedunov e9bf1d2ab8 Create from Usage: Add test for KT-17537
#KT-17537 Fixed
2017-07-17 16:09:53 +03:00

9 lines
198 B
Plaintext
Vendored

// "Create function 'foo'" "true"
fun bar() {
if (foo()) return
}
fun foo(): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}