Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/topLevelFunPlacement.kt.after
T
2019-11-13 08:37:25 +09:00

17 lines
155 B
Plaintext
Vendored

// "Create function 'foo'" "true"
val baz = 1
fun test() {
val a: Int = foo()
}
fun foo(): Int {
TODO("Not yet implemented")
}
fun bar() {
}