Files
kotlin-fork/idea/testData/findUsages/kotlin/internal/findFunctionUsages/kotlinMultiRefInImport.1.kt
T
Mikhail Glukhikh dd1ac5bb6b Add a set of tests for internal callables find usages
Related to KT-19811
2017-09-12 16:51:02 +03:00

12 lines
163 B
Kotlin
Vendored

// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtNamedFunction
// OPTIONS: usages
package client
import server.foo
fun test() {
foo()
foo(1)
val t = foo
}