Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/topLevelFunPlacement.kt.after

17 lines
227 B
Plaintext
Vendored

// "Create function 'foo'" "true"
val baz = 1
fun test() {
val a: Int = foo()
}
fun foo(): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
fun bar() {
}