Files
kotlin-fork/idea/testData/completion/basic/VariableClassName.kt
T
Nikolay Krasko 2826db7d9a KT-1103 Public outer function from different package and source file is not visible in completion:
- Stubs elements are enabled
- Changed method for selecting indexing policy for plugin and compiler
- Quick fix for import unresolved top-level function added
2012-01-31 14:10:08 +04:00

13 lines
131 B
Kotlin

package some;
open class MyClass() {
}
class A() {
public fun test() {
val a : MyC<caret>
}
}
// EXIST: MyClass