Files
kotlin-fork/idea/testData/shortenRefsFir/calls/notImportedTopLevelFunctionConflictsWithImported.kt
T
Roman Golyshev ee98a76600 FIR IDE: Implement simple importing of the functions
This is not a complete algorithm, but it already works in many cases

Disable some tests that not yet work
2021-02-12 10:53:16 +00:00

8 lines
105 B
Kotlin
Vendored

// FIR_COMPARISON
package test
fun foo() {}
fun usage() {
<selection>dependency.foo()</selection>
}