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

13 lines
110 B
Kotlin
Vendored

// "Create function 'foo'" "true"
val baz = 1
fun test() {
val a: Int = <caret>foo()
}
fun bar() {
}